lokinet/llarp/routing/dht_message.hpp

40 lines
734 B
C++
Raw Normal View History

#ifndef LLARP_MESSAGES_DHT_HPP
#define LLARP_MESSAGES_DHT_HPP
#include <dht/message.hpp>
2018-12-12 02:04:32 +00:00
#include <routing/message.hpp>
#include <vector>
namespace llarp
{
namespace routing
{
struct DHTMessage final : public IMessage
{
2019-05-03 13:15:03 +00:00
std::vector< llarp::dht::IMessage::Ptr_t > M;
uint64_t V = 0;
2019-07-30 23:42:13 +00:00
~DHTMessage() override = default;
bool
2019-02-05 00:41:33 +00:00
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* val) override;
bool
BEncode(llarp_buffer_t* buf) const override;
bool
HandleMessage(IMessageHandler* h, AbstractRouter* r) const override;
void
Clear() override
{
M.clear();
V = 0;
}
};
} // namespace routing
} // namespace llarp
#endif