mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
7caa87862e
All #ifndef guards on headers have been removed, I think, in favor of #pragma once Headers are now included as `#include "filename"` if the included file resides in the same directory as the file including it, or any subdirectory therein. Otherwise they are included as `#include <project/top/dir/relative/path/filename>` The above does not include system/os headers.
48 lines
1.0 KiB
C++
48 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include "dht.h"
|
|
#include "key.hpp"
|
|
#include <llarp/path/path_types.hpp>
|
|
#include <llarp/util/bencode.hpp>
|
|
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace dht
|
|
{
|
|
constexpr size_t MAX_MSG_SIZE = 2048;
|
|
|
|
struct IMessage
|
|
{
|
|
virtual ~IMessage() = default;
|
|
|
|
/// construct
|
|
IMessage(const Key_t& from) : From(from)
|
|
{}
|
|
|
|
using Ptr_t = std::unique_ptr<IMessage>;
|
|
|
|
virtual bool
|
|
HandleMessage(struct llarp_dht_context* dht, std::vector<Ptr_t>& replies) const = 0;
|
|
|
|
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;
|
|
uint64_t version = LLARP_PROTO_VERSION;
|
|
};
|
|
|
|
IMessage::Ptr_t
|
|
DecodeMessage(const Key_t& from, llarp_buffer_t* buf, bool relayed = false);
|
|
|
|
bool
|
|
DecodeMesssageList(
|
|
Key_t from, llarp_buffer_t* buf, std::vector<IMessage::Ptr_t>& dst, bool relayed = false);
|
|
} // namespace dht
|
|
} // namespace llarp
|