2018-06-29 14:25:09 +00:00
|
|
|
#ifndef LLARP_MESSAGES_DHT_HPP
|
|
|
|
#define LLARP_MESSAGES_DHT_HPP
|
2018-12-12 00:48:54 +00:00
|
|
|
#include <dht.hpp>
|
2018-12-12 02:04:32 +00:00
|
|
|
#include <routing/message.hpp>
|
2018-06-29 14:25:09 +00:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace routing
|
|
|
|
{
|
2018-11-05 11:27:12 +00:00
|
|
|
struct DHTMessage final : public IMessage
|
2018-06-29 14:25:09 +00:00
|
|
|
{
|
2018-09-02 18:25:42 +00:00
|
|
|
std::vector< std::unique_ptr< llarp::dht::IMessage > > M;
|
2018-06-29 14:25:09 +00:00
|
|
|
uint64_t V = 0;
|
|
|
|
|
|
|
|
~DHTMessage();
|
|
|
|
|
|
|
|
bool
|
2018-11-05 11:27:12 +00:00
|
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* val) override;
|
2018-06-29 14:25:09 +00:00
|
|
|
|
|
|
|
bool
|
2018-11-05 11:27:12 +00:00
|
|
|
BEncode(llarp_buffer_t* buf) const override;
|
2018-06-29 14:25:09 +00:00
|
|
|
|
|
|
|
bool
|
2018-12-10 16:26:46 +00:00
|
|
|
HandleMessage(IMessageHandler* h, llarp::Router* r) const override;
|
2018-06-29 14:25:09 +00:00
|
|
|
};
|
|
|
|
} // namespace routing
|
|
|
|
} // namespace llarp
|
|
|
|
|
2018-09-02 18:25:42 +00:00
|
|
|
#endif
|