mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
43 lines
988 B
C++
43 lines
988 B
C++
#ifndef LLARP_DHT_MESSAGES_GOT_ROUTER_HPP
|
|
#define LLARP_DHT_MESSAGES_GOT_ROUTER_HPP
|
|
#include <llarp/dht/message.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace dht
|
|
{
|
|
struct GotRouterMessage : public IMessage
|
|
{
|
|
GotRouterMessage(const Key_t& from) : IMessage(from)
|
|
{
|
|
}
|
|
GotRouterMessage(const Key_t& from, uint64_t id, const llarp_rc* result)
|
|
: IMessage(from), txid(id)
|
|
{
|
|
if(result)
|
|
{
|
|
R.emplace_back();
|
|
llarp_rc_clear(&R.back());
|
|
llarp_rc_copy(&R.back(), result);
|
|
}
|
|
}
|
|
|
|
~GotRouterMessage();
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const;
|
|
|
|
bool
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* val);
|
|
|
|
virtual bool
|
|
HandleMessage(llarp_dht_context* ctx,
|
|
std::vector< IMessage* >& replies) const;
|
|
|
|
std::vector< llarp_rc > R;
|
|
uint64_t txid = 0;
|
|
uint64_t version = 0;
|
|
};
|
|
} // namespace dht
|
|
} // namespace llarp
|
|
#endif |