lokinet/llarp/dht/messages/findrouter.hpp

65 lines
1.7 KiB
C++
Raw Normal View History

#ifndef LLARP_DHT_MESSAGES_FIND_ROUTER_HPP
#define LLARP_DHT_MESSAGES_FIND_ROUTER_HPP
2018-12-12 01:48:54 +01:00
#include <dht/message.hpp>
namespace llarp
{
namespace dht
{
struct FindRouterMessage : public IMessage
{
// inbound parsing
FindRouterMessage(const Key_t& from) : IMessage(from)
{
}
// find by routerid
FindRouterMessage(uint64_t id, const RouterID& target)
: IMessage({}), targetKey(target), txid(id)
{
}
// exploritory
FindRouterMessage(uint64_t id) : IMessage({}), exploritory(true), txid(id)
{
targetKey.Randomize();
}
2019-07-31 01:42:13 +02:00
~FindRouterMessage() override;
bool
BEncode(llarp_buffer_t* buf) const override;
bool
2019-02-05 01:41:33 +01:00
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* val) override;
2019-07-31 01:42:13 +02:00
bool
HandleMessage(
llarp_dht_context* ctx,
std::vector< std::unique_ptr< IMessage > >& replies) const override;
RouterID targetKey;
bool iterative = false;
bool exploritory = false;
uint64_t txid = 0;
uint64_t version = 0;
};
/// variant of FindRouterMessage relayed via path
struct RelayedFindRouterMessage final : public FindRouterMessage
{
RelayedFindRouterMessage(const Key_t& from) : FindRouterMessage(from)
{
}
/// handle a relayed FindRouterMessage, do a lookup on the dht and inform
/// the path of the result
/// TODO: smart path expiration logic needs to be implemented
2019-07-31 01:42:13 +02:00
bool
2019-05-03 15:15:03 +02:00
HandleMessage(llarp_dht_context* ctx,
std::vector< IMessage::Ptr_t >& replies) const override;
};
2018-07-17 06:37:50 +02:00
} // namespace dht
} // namespace llarp
#endif