pools per ident hash

This commit is contained in:
orignal 2014-04-01 15:08:53 -04:00
parent 81e06769dc
commit a10edb4cc5
3 changed files with 12 additions and 8 deletions

View file

@ -146,7 +146,7 @@ namespace tunnel
std::map<uint32_t, InboundTunnel *> m_InboundTunnels;
std::list<OutboundTunnel *> m_OutboundTunnels;
std::map<uint32_t, TransitTunnel *> m_TransitTunnels;
std::list<TunnelPool *> m_Pools;
std::map<i2p::data::IdentHash, TunnelPool *> m_Pools;
i2p::util::Queue<I2NPMessage> m_Queue;
public: