You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/messages/dht_immediate.hpp

36 lines
665 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(const 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