lokinet/include/llarp/messages/dht_immediate.hpp
Jeff Becker 18b50f4a74
* implement path transfer message
* update dht docs
* update other docs
* start working on dht for hidden services
* fix up unit tests for dht
* update makefile and other build files
2018-06-29 10:25:09 -04:00

31 lines
597 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(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;
};
} // namespace llarp
#endif