mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
41 lines
920 B
C++
41 lines
920 B
C++
#ifndef LLARP_DHT_MESSAGE_HPP
|
|
#define LLARP_DHT_MESSAGE_HPP
|
|
#include <llarp/dht.h>
|
|
#include <llarp/bencode.hpp>
|
|
#include <llarp/dht/key.hpp>
|
|
#include <llarp/path_types.hpp>
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace dht
|
|
{
|
|
constexpr size_t MAX_MSG_SIZE = 2048;
|
|
|
|
struct IMessage : public llarp::IBEncodeMessage
|
|
{
|
|
virtual ~IMessage(){};
|
|
|
|
/// construct
|
|
IMessage(const Key_t& from) : From(from)
|
|
{
|
|
}
|
|
|
|
virtual bool
|
|
HandleMessage(llarp_dht_context* dht,
|
|
std::vector< IMessage* >& replies) const = 0;
|
|
|
|
Key_t From;
|
|
PathID_t pathID;
|
|
};
|
|
|
|
IMessage*
|
|
DecodeMessage(const Key_t& from, llarp_buffer_t* buf, bool relayed = false);
|
|
|
|
bool
|
|
DecodeMesssageList(const Key_t& from, llarp_buffer_t* buf,
|
|
std::vector< IMessage* >& dst, bool relayed = false);
|
|
} // namespace dht
|
|
} // namespace llarp
|
|
|
|
#endif |