i2pd/Datagram.h

51 lines
1.2 KiB
C
Raw Normal View History

2014-10-22 23:30:25 +04:00
#ifndef DATAGRAM_H__
#define DATAGRAM_H__
#include <inttypes.h>
2015-01-29 05:37:08 +03:00
#include <memory>
2014-10-31 23:44:44 +03:00
#include <functional>
#include "Identity.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
{
2014-10-31 23:44:44 +03:00
typedef std::function<void (const i2p::data::IdentityEx& ident, const uint8_t *, size_t)> Receiver;
2014-10-22 23:30:25 +04:00
public:
2014-10-24 00:56:50 +04:00
DatagramDestination (i2p::client::ClientDestination& owner);
2014-10-22 23:30:25 +04:00
~DatagramDestination () {};
2015-01-29 05:37:08 +03:00
void SendDatagramTo (const uint8_t * payload, size_t len, std::shared_ptr<const i2p::data::LeaseSet> remote);
2014-10-22 23:30:25 +04:00
void HandleDataMessagePayload (const uint8_t * buf, size_t len);
2014-10-31 23:44:44 +03:00
void SetReceiver (const Receiver& receiver) { m_Receiver = receiver; };
void ResetReceiver () { m_Receiver = nullptr; };
2014-10-24 00:56:50 +04:00
private:
I2NPMessage * CreateDataMessage (const uint8_t * payload, size_t len);
2015-01-29 05:37:08 +03:00
void SendMsg (I2NPMessage * msg, std::shared_ptr<const i2p::data::LeaseSet> remote);
2014-10-27 23:30:56 +03:00
void HandleDatagram (const uint8_t * buf, size_t len);
2014-10-24 00:56:50 +04:00
2014-10-22 23:30:25 +04:00
private:
i2p::client::ClientDestination& m_Owner;
2014-10-31 23:44:44 +03:00
Receiver m_Receiver;
2014-10-22 23:30:25 +04:00
};
}
}
#endif