mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
c3c388b6aa
does not compile
35 lines
673 B
C++
35 lines
673 B
C++
#ifndef LLARP_MESSAGES_DHT_IMMEDIATE_HPP
|
|
#define LLARP_MESSAGES_DHT_IMMEDIATE_HPP
|
|
#include <llarp/dht.hpp>
|
|
#include <llarp/link_message.hpp>
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
struct DHTImmeidateMessage : public ILinkMessage
|
|
{
|
|
DHTImmeidateMessage(ILinkSession* parent) : ILinkMessage(parent)
|
|
{
|
|
}
|
|
|
|
DHTImmeidateMessage() : ILinkMessage()
|
|
{
|
|
}
|
|
|
|
~DHTImmeidateMessage();
|
|
|
|
std::vector< std::unique_ptr< llarp::dht::IMessage > > msgs;
|
|
|
|
bool
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* buf);
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const;
|
|
|
|
bool
|
|
HandleMessage(llarp_router* router) const;
|
|
};
|
|
} // namespace llarp
|
|
|
|
#endif
|