2013-11-10 23:19:49 +00:00
|
|
|
#ifndef TUNNEL_BASE_H__
|
|
|
|
#define TUNNEL_BASE_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
2014-01-04 03:56:28 +00:00
|
|
|
#include "Timestamp.h"
|
2013-11-13 12:56:16 +00:00
|
|
|
#include "I2NPProtocol.h"
|
2014-01-20 23:37:51 +00:00
|
|
|
#include "Identity.h"
|
2013-11-10 23:19:49 +00:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace tunnel
|
|
|
|
{
|
2013-11-23 01:41:28 +00:00
|
|
|
const size_t TUNNEL_DATA_MSG_SIZE = 1028;
|
2013-12-10 13:10:49 +00:00
|
|
|
const size_t TUNNEL_DATA_ENCRYPTED_SIZE = 1008;
|
2013-11-23 01:41:28 +00:00
|
|
|
const size_t TUNNEL_DATA_MAX_PAYLOAD_SIZE = 1003;
|
|
|
|
|
2013-11-10 23:19:49 +00:00
|
|
|
enum TunnelDeliveryType
|
|
|
|
{
|
|
|
|
eDeliveryTypeLocal = 0,
|
|
|
|
eDeliveryTypeTunnel = 1,
|
|
|
|
eDeliveryTypeRouter = 2
|
|
|
|
};
|
|
|
|
struct TunnelMessageBlock
|
|
|
|
{
|
|
|
|
TunnelDeliveryType deliveryType;
|
2014-01-20 23:37:51 +00:00
|
|
|
i2p::data::IdentHash hash;
|
2014-01-21 00:12:59 +00:00
|
|
|
uint32_t tunnelID;
|
2013-11-10 23:19:49 +00:00
|
|
|
I2NPMessage * data;
|
|
|
|
};
|
2013-11-13 12:56:16 +00:00
|
|
|
|
|
|
|
class TunnelBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2014-01-20 13:27:46 +00:00
|
|
|
//WARNING!!! GetSecondsSinceEpoch() return uint64_t
|
2014-01-04 03:56:28 +00:00
|
|
|
TunnelBase (): m_CreationTime (i2p::util::GetSecondsSinceEpoch ()) {};
|
2013-12-10 13:10:49 +00:00
|
|
|
virtual ~TunnelBase () {};
|
|
|
|
|
2013-11-13 12:56:16 +00:00
|
|
|
virtual void EncryptTunnelMsg (I2NPMessage * tunnelMsg) = 0;
|
|
|
|
virtual uint32_t GetNextTunnelID () const = 0;
|
2013-12-10 13:10:49 +00:00
|
|
|
virtual const i2p::data::IdentHash& GetNextIdentHash () const = 0;
|
2014-01-04 03:56:28 +00:00
|
|
|
virtual uint32_t GetTunnelID () const = 0; // as known at our side
|
|
|
|
|
|
|
|
uint32_t GetCreationTime () const { return m_CreationTime; };
|
|
|
|
void SetCreationTime (uint32_t t) { m_CreationTime = t; };
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
uint32_t m_CreationTime; // seconds since epoch
|
2013-11-13 12:56:16 +00:00
|
|
|
};
|
2014-03-14 19:13:34 +00:00
|
|
|
|
|
|
|
struct TunnelCreationTimeCmp
|
|
|
|
{
|
|
|
|
bool operator() (const TunnelBase * t1, const TunnelBase * t2) const
|
|
|
|
{
|
|
|
|
if (t1->GetCreationTime () != t2->GetCreationTime ())
|
|
|
|
return t1->GetCreationTime () > t2->GetCreationTime ();
|
|
|
|
else
|
|
|
|
return t1 < t2;
|
|
|
|
};
|
|
|
|
};
|
2013-11-10 23:19:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|