1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-15 09:39:58 +00:00
i2pd/TunnelEndpoint.h

55 lines
1.3 KiB
C
Raw Permalink Normal View History

2013-11-10 18:19:49 -05:00
#ifndef TUNNEL_ENDPOINT_H__
#define TUNNEL_ENDPOINT_H__
#include <inttypes.h>
#include <map>
#include <string>
#include "I2NPProtocol.h"
#include "TunnelBase.h"
namespace i2p
{
namespace tunnel
{
class TunnelEndpoint
{
2014-07-04 20:54:03 -04:00
struct TunnelMessageBlockEx: public TunnelMessageBlock
{
uint8_t nextFragmentNum;
};
struct Fragment
{
uint8_t fragmentNum;
bool isLastFragment;
std::shared_ptr<I2NPMessage> data;
};
2014-07-04 20:54:03 -04:00
2013-11-10 18:19:49 -05:00
public:
TunnelEndpoint (bool isInbound): m_IsInbound (isInbound), m_NumReceivedBytes (0) {};
2014-07-05 08:33:08 -04:00
~TunnelEndpoint ();
2013-12-10 08:10:49 -05:00
size_t GetNumReceivedBytes () const { return m_NumReceivedBytes; };
void HandleDecryptedTunnelDataMsg (std::shared_ptr<I2NPMessage> msg);
2013-11-10 18:19:49 -05:00
private:
2014-07-04 20:54:03 -04:00
void HandleFollowOnFragment (uint32_t msgID, bool isLastFragment, const TunnelMessageBlockEx& m);
2013-11-10 18:19:49 -05:00
void HandleNextMessage (const TunnelMessageBlock& msg);
void AddOutOfSequenceFragment (uint32_t msgID, uint8_t fragmentNum, bool isLastFragment, std::shared_ptr<I2NPMessage> data);
void HandleOutOfSequenceFragment (uint32_t msgID, TunnelMessageBlockEx& msg);
2013-11-10 18:19:49 -05:00
2014-07-04 20:54:03 -04:00
private:
2014-06-11 10:56:20 -04:00
std::map<uint32_t, TunnelMessageBlockEx> m_IncompleteMessages;
std::map<uint32_t, Fragment> m_OutOfSequenceFragments;
bool m_IsInbound;
2013-12-10 08:10:49 -05:00
size_t m_NumReceivedBytes;
2013-11-10 18:19:49 -05:00
};
}
}
#endif