i2pd/Datagram.h

43 lines
818 B
C
Raw Normal View History

2014-10-22 23:30:25 +04:00
#ifndef DATAGRAM_H__
#define DATAGRAM_H__
#include <inttypes.h>
2014-10-24 00:56:50 +04:00
#include "LeaseSet.h"
#include "I2NPProtocol.h"
2014-10-22 23:30:25 +04:00
namespace i2p
{
namespace client
{
class ClientDestination;
}
namespace datagram
{
const size_t MAX_DATAGRAM_SIZE = 32768;
class DatagramDestination
{
public:
2014-10-24 00:56:50 +04:00
DatagramDestination (i2p::client::ClientDestination& owner);
2014-10-22 23:30:25 +04:00
~DatagramDestination () {};
2014-10-24 00:56:50 +04:00
void SendDatagramTo (const uint8_t * payload, size_t len, const i2p::data::LeaseSet& remote);
2014-10-22 23:30:25 +04:00
void HandleDataMessagePayload (const uint8_t * buf, size_t len);
2014-10-24 00:56:50 +04:00
private:
I2NPMessage * CreateDataMessage (const uint8_t * payload, size_t len);
2014-10-22 23:30:25 +04:00
private:
i2p::client::ClientDestination& m_Owner;
2014-10-24 00:56:50 +04:00
uint8_t m_OutgoingBuffer[MAX_DATAGRAM_SIZE];
uint8_t * m_Signature, * m_Payload;
size_t m_HeaderLen;
2014-10-22 23:30:25 +04:00
};
}
}
#endif