i2pd/TunnelPool.h

71 lines
2.3 KiB
C
Raw Normal View History

2014-03-14 17:35:02 +01:00
#ifndef TUNNEL_POOL__
#define TUNNEL_POOL__
2014-03-17 21:50:03 +01:00
#include <inttypes.h>
#include <set>
#include <vector>
2014-03-17 21:50:03 +01:00
#include <utility>
#include "Identity.h"
2014-03-14 17:35:02 +01:00
#include "LeaseSet.h"
#include "I2NPProtocol.h"
#include "TunnelBase.h"
2014-04-02 19:14:21 +02:00
#include "RouterContext.h"
2014-03-14 17:35:02 +01:00
namespace i2p
{
namespace tunnel
{
class Tunnel;
class InboundTunnel;
class OutboundTunnel;
const int TUNNEL_EXPIRATION_THRESHOLD = 60; // 1 minute
2014-03-14 17:35:02 +01:00
class TunnelPool // per local destination
{
public:
TunnelPool (i2p::data::LocalDestination& localDestination, int numHops, int numTunnels = 5);
2014-03-14 17:35:02 +01:00
~TunnelPool ();
const uint8_t * GetEncryptionPrivateKey () const { return m_LocalDestination.GetEncryptionPrivateKey (); };
const uint8_t * GetEncryptionPublicKey () const { return m_LocalDestination.GetEncryptionPublicKey (); };
2014-07-29 19:44:54 +02:00
const i2p::data::LocalDestination& GetLocalDestination () const { return m_LocalDestination; };
bool IsExploratory () const { return m_LocalDestination.GetIdentHash () == i2p::context.GetIdentHash (); };
2014-04-02 19:14:21 +02:00
void CreateTunnels ();
void TunnelCreated (InboundTunnel * createdTunnel);
2014-03-15 02:22:59 +01:00
void TunnelExpired (InboundTunnel * expiredTunnel);
2014-03-16 21:03:20 +01:00
void TunnelCreated (OutboundTunnel * createdTunnel);
void TunnelExpired (OutboundTunnel * expiredTunnel);
2014-03-15 01:24:12 +01:00
std::vector<InboundTunnel *> GetInboundTunnels (int num) const;
OutboundTunnel * GetNextOutboundTunnel (OutboundTunnel * suggested = nullptr);
InboundTunnel * GetNextInboundTunnel (InboundTunnel * suggested = nullptr);
2014-04-01 21:08:53 +02:00
const i2p::data::IdentHash& GetIdentHash () { return m_LocalDestination.GetIdentHash (); };
2014-03-17 21:50:03 +01:00
void TestTunnels ();
void ProcessDeliveryStatus (I2NPMessage * msg);
private:
void CreateInboundTunnel ();
2014-03-16 21:03:20 +01:00
void CreateOutboundTunnel ();
2014-08-09 04:44:33 +02:00
void RecreateInboundTunnel (InboundTunnel * tunnel);
void RecreateOutboundTunnel (OutboundTunnel * tunnel);
template<class TTunnels>
typename TTunnels::value_type GetNextTunnel (TTunnels& tunnels,
typename TTunnels::value_type suggested = nullptr);
2014-03-16 21:03:20 +01:00
2014-03-14 17:35:02 +01:00
private:
2014-04-01 19:55:09 +02:00
i2p::data::LocalDestination& m_LocalDestination;
int m_NumHops, m_NumTunnels;
std::set<InboundTunnel *, TunnelCreationTimeCmp> m_InboundTunnels; // recent tunnel appears first
2014-03-16 21:03:20 +01:00
std::set<OutboundTunnel *, TunnelCreationTimeCmp> m_OutboundTunnels;
2014-03-17 21:50:03 +01:00
std::map<uint32_t, std::pair<OutboundTunnel *, InboundTunnel *> > m_Tests;
2014-03-14 17:35:02 +01:00
};
}
}
#endif