mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
36 lines
658 B
C++
36 lines
658 B
C++
#ifndef LLARP_MESSAGES_DHT_IMMEDIATE_HPP
|
|
#define LLARP_MESSAGES_DHT_IMMEDIATE_HPP
|
|
|
|
#include <dht/message.hpp>
|
|
#include <messages/link_message.hpp>
|
|
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
struct DHTImmediateMessage : public ILinkMessage
|
|
{
|
|
DHTImmediateMessage() : ILinkMessage()
|
|
{
|
|
}
|
|
|
|
~DHTImmediateMessage();
|
|
|
|
std::vector< std::unique_ptr< llarp::dht::IMessage > > msgs;
|
|
|
|
bool
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* buf) override;
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const override;
|
|
|
|
bool
|
|
HandleMessage(llarp::Router* router) const override;
|
|
|
|
void
|
|
Clear() override;
|
|
};
|
|
} // namespace llarp
|
|
|
|
#endif
|