mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.6 KiB
58 lines
1.6 KiB
11 years ago
|
#ifndef TUNNEL_GATEWAY_H__
|
||
|
#define TUNNEL_GATEWAY_H__
|
||
|
|
||
|
#include <inttypes.h>
|
||
|
#include <vector>
|
||
10 years ago
|
#include <memory>
|
||
11 years ago
|
#include "I2NPProtocol.h"
|
||
|
#include "TunnelBase.h"
|
||
|
|
||
|
namespace i2p
|
||
|
{
|
||
|
namespace tunnel
|
||
|
{
|
||
9 years ago
|
class TunnelGatewayBuffer
|
||
|
{
|
||
|
public:
|
||
|
TunnelGatewayBuffer (uint32_t tunnelID);
|
||
|
~TunnelGatewayBuffer ();
|
||
|
void PutI2NPMsg (const TunnelMessageBlock& block);
|
||
|
const std::vector<std::shared_ptr<I2NPMessage> >& GetTunnelDataMsgs () const { return m_TunnelDataMsgs; };
|
||
|
void ClearTunnelDataMsgs ();
|
||
|
void CompleteCurrentTunnelDataMessage ();
|
||
|
|
||
|
private:
|
||
|
|
||
|
void CreateCurrentTunnelDataMessage ();
|
||
|
|
||
|
private:
|
||
|
|
||
|
uint32_t m_TunnelID;
|
||
|
std::vector<std::shared_ptr<I2NPMessage> > m_TunnelDataMsgs;
|
||
|
std::shared_ptr<I2NPMessage> m_CurrentTunnelDataMsg;
|
||
|
size_t m_RemainingSize;
|
||
|
uint8_t m_NonZeroRandomBuffer[TUNNEL_DATA_MAX_PAYLOAD_SIZE];
|
||
|
};
|
||
|
|
||
|
class TunnelGateway
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
TunnelGateway (TunnelBase * tunnel):
|
||
|
m_Tunnel (tunnel), m_Buffer (tunnel->GetNextTunnelID ()), m_NumSentBytes (0) {};
|
||
|
void SendTunnelDataMsg (const TunnelMessageBlock& block);
|
||
|
void PutTunnelDataMsg (const TunnelMessageBlock& block);
|
||
|
void SendBuffer ();
|
||
|
size_t GetNumSentBytes () const { return m_NumSentBytes; };
|
||
|
|
||
|
private:
|
||
|
|
||
|
TunnelBase * m_Tunnel;
|
||
|
TunnelGatewayBuffer m_Buffer;
|
||
|
size_t m_NumSentBytes;
|
||
|
};
|
||
|
}
|
||
|
}
|
||
11 years ago
|
|
||
|
#endif
|