mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
32 lines
625 B
C++
32 lines
625 B
C++
#ifndef LLARP_MESSAGES_DHT_HPP
|
|
#define LLARP_MESSAGES_DHT_HPP
|
|
#include <dht.hpp>
|
|
#include <routing/message.hpp>
|
|
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace routing
|
|
{
|
|
struct DHTMessage final : public IMessage
|
|
{
|
|
std::vector< std::unique_ptr< llarp::dht::IMessage > > M;
|
|
uint64_t V = 0;
|
|
|
|
~DHTMessage();
|
|
|
|
bool
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* val) override;
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const override;
|
|
|
|
bool
|
|
HandleMessage(IMessageHandler* h, llarp::Router* r) const override;
|
|
};
|
|
} // namespace routing
|
|
} // namespace llarp
|
|
|
|
#endif
|