2014-03-14 20:35:02 +04:00
|
|
|
#ifndef TUNNEL_POOL__
|
|
|
|
#define TUNNEL_POOL__
|
|
|
|
|
2014-03-14 23:13:34 +04:00
|
|
|
#include <set>
|
|
|
|
#include <vector>
|
|
|
|
#include "Identity.h"
|
2014-03-14 20:35:02 +04:00
|
|
|
#include "LeaseSet.h"
|
2014-03-14 23:13:34 +04:00
|
|
|
#include "I2NPProtocol.h"
|
|
|
|
#include "TunnelBase.h"
|
2014-03-14 20:35:02 +04:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace tunnel
|
|
|
|
{
|
|
|
|
class Tunnel;
|
|
|
|
class InboundTunnel;
|
|
|
|
class OutboundTunnel;
|
|
|
|
|
|
|
|
class TunnelPool // per local destination
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2014-03-14 23:13:34 +04:00
|
|
|
TunnelPool (i2p::data::LocalDestination * owner, int numTunnels = 5);
|
2014-03-14 20:35:02 +04:00
|
|
|
~TunnelPool ();
|
|
|
|
|
2014-03-14 23:13:34 +04:00
|
|
|
void CreateTunnels ();
|
|
|
|
void TunnelCreated (InboundTunnel * createdTunnel);
|
2014-03-15 05:22:59 +04:00
|
|
|
void TunnelExpired (InboundTunnel * expiredTunnel);
|
2014-03-15 04:24:12 +04:00
|
|
|
std::vector<InboundTunnel *> GetInboundTunnels (int num) const;
|
2014-03-14 23:13:34 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void CreateInboundTunnel ();
|
2014-03-14 20:35:02 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-03-14 23:13:34 +04:00
|
|
|
i2p::data::LocalDestination * m_Owner;
|
|
|
|
int m_NumTunnels;
|
|
|
|
std::set<InboundTunnel *, TunnelCreationTimeCmp> m_InboundTunnels; // recent tunnel appears first
|
2014-03-15 04:24:12 +04:00
|
|
|
|
2014-03-14 20:35:02 +04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|