Browse Source

use flat_map for incompete messages

pull/1696/head
orignal 3 years ago
parent
commit
b9dd4aee8d
  1. 6
      libi2pd/TunnelEndpoint.h

6
libi2pd/TunnelEndpoint.h

@ -10,9 +10,9 @@
#define TUNNEL_ENDPOINT_H__ #define TUNNEL_ENDPOINT_H__
#include <inttypes.h> #include <inttypes.h>
#include <unordered_map>
#include <vector> #include <vector>
#include <string> #include <string>
#include <boost/container/flat_map.hpp>
#include "I2NPProtocol.h" #include "I2NPProtocol.h"
#include "TunnelBase.h" #include "TunnelBase.h"
@ -59,8 +59,8 @@ namespace tunnel
private: private:
std::unordered_map<uint32_t, TunnelMessageBlockEx> m_IncompleteMessages; boost::container::flat_map<uint32_t, TunnelMessageBlockEx> m_IncompleteMessages;
std::unordered_map<uint64_t, std::unique_ptr<Fragment> > m_OutOfSequenceFragments; // ((msgID << 8) + fragment#)->fragment boost::container::flat_map<uint64_t, std::unique_ptr<Fragment> > m_OutOfSequenceFragments; // ((msgID << 8) + fragment#)->fragment
bool m_IsInbound; bool m_IsInbound;
size_t m_NumReceivedBytes; size_t m_NumReceivedBytes;
TunnelMessageBlockEx m_CurrentMessage; TunnelMessageBlockEx m_CurrentMessage;

Loading…
Cancel
Save