i2pd/TunnelPool.h

47 lines
836 B
C
Raw Normal View History

2014-03-14 20:35:02 +04:00
#ifndef TUNNEL_POOL__
#define TUNNEL_POOL__
#include <set>
#include <vector>
#include "Identity.h"
2014-03-14 20:35:02 +04:00
#include "LeaseSet.h"
#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:
TunnelPool (i2p::data::LocalDestination * owner, int numTunnels = 5);
2014-03-14 20:35:02 +04:00
~TunnelPool ();
void CreateTunnels ();
void TunnelCreated (InboundTunnel * createdTunnel);
2014-03-15 04:24:12 +04:00
std::vector<InboundTunnel *> GetInboundTunnels (int num) const;
void ManageTunnels ();
private:
void CreateInboundTunnel ();
2014-03-14 20:35:02 +04:00
private:
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