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