i2pd/libi2pd/TunnelBase.h

83 lines
2.2 KiB
C
Raw Permalink Normal View History

/*
* Copyright (c) 2013-2022, The PurpleI2P Project
*
* This file is part of Purple i2pd project and licensed under BSD3
*
* See full license text in LICENSE file at top of project tree
*/
2013-11-11 03:19:49 +04:00
#ifndef TUNNEL_BASE_H__
#define TUNNEL_BASE_H__
#include <inttypes.h>
2015-01-27 22:55:46 +03:00
#include <memory>
2014-01-04 07:56:28 +04:00
#include "Timestamp.h"
#include "I2NPProtocol.h"
2014-01-21 03:37:51 +04:00
#include "Identity.h"
2013-11-11 03:19:49 +04:00
namespace i2p
{
namespace tunnel
{
const size_t TUNNEL_DATA_MSG_SIZE = 1028;
2013-12-10 17:10:49 +04:00
const size_t TUNNEL_DATA_ENCRYPTED_SIZE = 1008;
const size_t TUNNEL_DATA_MAX_PAYLOAD_SIZE = 1003;
2018-01-06 06:48:51 +03:00
enum TunnelDeliveryType
{
eDeliveryTypeLocal = 0,
2013-11-11 03:19:49 +04:00
eDeliveryTypeTunnel = 1,
eDeliveryTypeRouter = 2
2018-01-06 06:48:51 +03:00
};
2013-11-11 03:19:49 +04:00
struct TunnelMessageBlock
{
TunnelDeliveryType deliveryType;
2018-01-06 06:48:51 +03:00
i2p::data::IdentHash hash;
2014-01-21 04:12:59 +04:00
uint32_t tunnelID;
std::shared_ptr<I2NPMessage> data;
2013-11-11 03:19:49 +04:00
};
class TunnelBase
{
public:
TunnelBase (uint32_t tunnelID, uint32_t nextTunnelID, const i2p::data::IdentHash& nextIdent):
2015-11-03 17:15:49 +03:00
m_TunnelID (tunnelID), m_NextTunnelID (nextTunnelID), m_NextIdent (nextIdent),
m_CreationTime (i2p::util::GetSecondsSinceEpoch ()) {};
2013-12-10 17:10:49 +04:00
virtual ~TunnelBase () {};
virtual void Cleanup () {};
2018-01-06 06:48:51 +03:00
virtual void HandleTunnelDataMsg (std::shared_ptr<i2p::I2NPMessage>&& tunnelMsg) = 0;
virtual void SendTunnelDataMsg (std::shared_ptr<i2p::I2NPMessage> msg) = 0;
2015-01-22 05:50:46 +03:00
virtual void FlushTunnelDataMsgs () {};
virtual void EncryptTunnelMsg (std::shared_ptr<const I2NPMessage> in, std::shared_ptr<I2NPMessage> out) = 0;
2015-11-03 17:15:49 +03:00
uint32_t GetNextTunnelID () const { return m_NextTunnelID; };
const i2p::data::IdentHash& GetNextIdentHash () const { return m_NextIdent; };
virtual uint32_t GetTunnelID () const { return m_TunnelID; }; // as known at our side
2014-01-04 07:56:28 +04:00
uint32_t GetCreationTime () const { return m_CreationTime; };
void SetCreationTime (uint32_t t) { m_CreationTime = t; };
2018-01-06 06:48:51 +03:00
2014-01-04 07:56:28 +04:00
private:
2015-11-03 17:15:49 +03:00
uint32_t m_TunnelID, m_NextTunnelID;
i2p::data::IdentHash m_NextIdent;
2014-01-04 07:56:28 +04:00
uint32_t m_CreationTime; // seconds since epoch
2018-01-06 06:48:51 +03:00
};
struct TunnelCreationTimeCmp
{
template<typename T>
bool operator() (const std::shared_ptr<T> & t1, const std::shared_ptr<T> & t2) const
2018-01-06 07:01:44 +03:00
{
if (t1->GetCreationTime () != t2->GetCreationTime ())
2018-01-06 06:48:51 +03:00
return t1->GetCreationTime () > t2->GetCreationTime ();
else
return t1 < t2;
2018-02-05 19:13:25 +03:00
}
2018-01-06 06:48:51 +03:00
};
2013-11-11 03:19:49 +04:00
}
}
#endif