2020-05-22 15:18:41 +02:00
|
|
|
/*
|
2021-11-21 00:31:18 +01:00
|
|
|
* Copyright (c) 2013-2021, The PurpleI2P Project
|
2020-05-22 15:18:41 +02:00
|
|
|
*
|
|
|
|
* 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 00:19:49 +01:00
|
|
|
#ifndef TUNNEL_GATEWAY_H__
|
|
|
|
#define TUNNEL_GATEWAY_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <vector>
|
2015-06-17 18:08:06 +02:00
|
|
|
#include <memory>
|
2013-11-11 00:19:49 +01:00
|
|
|
#include "I2NPProtocol.h"
|
|
|
|
#include "TunnelBase.h"
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace tunnel
|
|
|
|
{
|
|
|
|
class TunnelGatewayBuffer
|
|
|
|
{
|
|
|
|
public:
|
2017-02-04 02:57:04 +01:00
|
|
|
TunnelGatewayBuffer ();
|
2015-02-05 03:24:48 +01:00
|
|
|
~TunnelGatewayBuffer ();
|
2018-01-06 04:48:51 +01:00
|
|
|
void PutI2NPMsg (const TunnelMessageBlock& block);
|
2017-02-04 02:57:04 +01:00
|
|
|
const std::vector<std::shared_ptr<const I2NPMessage> >& GetTunnelDataMsgs () const { return m_TunnelDataMsgs; };
|
2014-06-26 20:45:34 +02:00
|
|
|
void ClearTunnelDataMsgs ();
|
|
|
|
void CompleteCurrentTunnelDataMessage ();
|
2013-11-11 00:19:49 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-01-06 03:25:48 +01:00
|
|
|
void CreateCurrentTunnelDataMessage ();
|
2018-01-06 04:48:51 +01:00
|
|
|
|
2013-11-11 00:19:49 +01:00
|
|
|
private:
|
|
|
|
|
2017-02-04 02:57:04 +01:00
|
|
|
std::vector<std::shared_ptr<const I2NPMessage> > m_TunnelDataMsgs;
|
2015-06-17 18:08:06 +02:00
|
|
|
std::shared_ptr<I2NPMessage> m_CurrentTunnelDataMsg;
|
2014-01-06 03:25:48 +01:00
|
|
|
size_t m_RemainingSize;
|
2021-11-21 00:31:18 +01:00
|
|
|
uint8_t * m_NonZeroRandomBuffer;
|
2018-01-06 04:48:51 +01:00
|
|
|
};
|
2013-11-13 13:56:16 +01:00
|
|
|
|
|
|
|
class TunnelGateway
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2015-06-26 22:06:59 +02:00
|
|
|
TunnelGateway (TunnelBase * tunnel):
|
2017-02-04 02:57:04 +01:00
|
|
|
m_Tunnel (tunnel), m_NumSentBytes (0) {};
|
2018-01-06 04:48:51 +01:00
|
|
|
void SendTunnelDataMsg (const TunnelMessageBlock& block);
|
2014-06-26 20:45:34 +02:00
|
|
|
void PutTunnelDataMsg (const TunnelMessageBlock& block);
|
2018-01-06 04:48:51 +01:00
|
|
|
void SendBuffer ();
|
2013-11-29 13:52:09 +01:00
|
|
|
size_t GetNumSentBytes () const { return m_NumSentBytes; };
|
2018-01-06 04:48:51 +01:00
|
|
|
|
2013-11-13 13:56:16 +01:00
|
|
|
private:
|
|
|
|
|
|
|
|
TunnelBase * m_Tunnel;
|
|
|
|
TunnelGatewayBuffer m_Buffer;
|
2013-11-29 13:52:09 +01:00
|
|
|
size_t m_NumSentBytes;
|
2018-01-06 04:48:51 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2013-11-11 00:19:49 +01:00
|
|
|
|
|
|
|
#endif
|