mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
273270916e
This commit reflects changes to clang-format rules. Unfortunately, these rule changes create a massive change to the codebase, which causes an apparent rewrite of git history. Git blame's --ignore-rev flag can be used to ignore this commit when attempting to `git blame` some code.
40 lines
732 B
C++
40 lines
732 B
C++
#ifndef LLARP_MESSAGES_DHT_HPP
|
|
#define LLARP_MESSAGES_DHT_HPP
|
|
|
|
#include <dht/message.hpp>
|
|
#include <routing/message.hpp>
|
|
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace routing
|
|
{
|
|
struct DHTMessage final : public IMessage
|
|
{
|
|
std::vector<llarp::dht::IMessage::Ptr_t> M;
|
|
uint64_t V = 0;
|
|
|
|
~DHTMessage() override = default;
|
|
|
|
bool
|
|
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
|