1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/dht/message.hpp

54 lines
1.1 KiB
C++
Raw Normal View History

#ifndef LLARP_DHT_MESSAGE_HPP
#define LLARP_DHT_MESSAGE_HPP
#include <dht/dht.h>
2018-12-12 01:48:54 +01:00
#include <dht/key.hpp>
2019-01-11 02:19:36 +01:00
#include <path/path_types.hpp>
#include <util/bencode.hpp>
#include <vector>
namespace llarp
{
namespace dht
{
constexpr size_t MAX_MSG_SIZE = 2048;
2019-05-24 04:01:36 +02:00
struct IMessage
{
2019-07-31 01:42:13 +02:00
virtual ~IMessage() = default;
/// construct
IMessage(const Key_t& from) : From(from)
{
}
2019-05-03 15:15:03 +02:00
using Ptr_t = std::unique_ptr< IMessage >;
virtual bool
2019-05-03 15:15:03 +02:00
HandleMessage(struct llarp_dht_context* dht,
std::vector< Ptr_t >& replies) const = 0;
2019-05-24 04:01:36 +02:00
virtual bool
BEncode(llarp_buffer_t* buf) const = 0;
virtual bool
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* val) = 0;
Key_t From;
PathID_t pathID;
2019-05-24 04:01:36 +02:00
uint64_t version = LLARP_PROTO_VERSION;
};
2019-05-03 15:15:03 +02:00
IMessage::Ptr_t
DecodeMessage(const Key_t& from, llarp_buffer_t* buf, bool relayed = false);
bool
DecodeMesssageList(Key_t from, llarp_buffer_t* buf,
2019-05-03 15:15:03 +02:00
std::vector< IMessage::Ptr_t >& dst,
bool relayed = false);
2018-07-17 06:37:50 +02:00
} // namespace dht
} // namespace llarp
2018-08-29 22:40:26 +02:00
#endif