i2pd/TunnelPool.h

56 lines
1.4 KiB
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 * localDestination, int numTunnels = 5);
2014-03-14 20:35:02 +04:00
~TunnelPool ();
const uint8_t * GetEncryptionPrivateKey () const { return m_EncryptionPrivateKey; };
const uint8_t * GetEncryptionPublicKey () const { return m_EncryptionPublicKey; };
void CreateTunnels ();
void TunnelCreated (InboundTunnel * createdTunnel);
2014-03-15 05:22:59 +04:00
void TunnelExpired (InboundTunnel * expiredTunnel);
2014-03-17 00:03:20 +04:00
void TunnelCreated (OutboundTunnel * createdTunnel);
void TunnelExpired (OutboundTunnel * expiredTunnel);
2014-03-15 04:24:12 +04:00
std::vector<InboundTunnel *> GetInboundTunnels (int num) const;
2014-03-17 00:03:20 +04:00
OutboundTunnel * GetNextOutboundTunnel ();
private:
void CreateInboundTunnel ();
2014-03-17 00:03:20 +04:00
void CreateOutboundTunnel ();
2014-03-14 20:35:02 +04:00
private:
uint8_t m_EncryptionPublicKey[256], m_EncryptionPrivateKey[256];
i2p::data::LocalDestination * m_LocalDestination;
int m_NumTunnels;
std::set<InboundTunnel *, TunnelCreationTimeCmp> m_InboundTunnels; // recent tunnel appears first
2014-03-17 00:03:20 +04:00
std::set<OutboundTunnel *, TunnelCreationTimeCmp> m_OutboundTunnels;
OutboundTunnel * m_LastOutboundTunnel;
2014-03-14 20:35:02 +04:00
};
}
}
#endif