2018-06-01 14:08:54 +00:00
|
|
|
#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(const RouterID& from) : ILinkMessage(from)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~DHTImmeidateMessage();
|
|
|
|
|
|
|
|
std::vector< 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;
|
|
|
|
};
|
2018-06-29 14:25:09 +00:00
|
|
|
} // namespace llarp
|
2018-06-01 14:08:54 +00:00
|
|
|
|
|
|
|
#endif
|