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