2018-07-11 13:20:14 +00:00
|
|
|
#ifndef LLARP_DHT_MESSAGES_FIND_ROUTER_HPP
|
|
|
|
#define LLARP_DHT_MESSAGES_FIND_ROUTER_HPP
|
|
|
|
#include <llarp/dht/message.hpp>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace dht
|
|
|
|
{
|
|
|
|
struct FindRouterMessage : public IMessage
|
|
|
|
{
|
|
|
|
FindRouterMessage(const Key_t& from) : IMessage(from)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-08-29 20:40:26 +00:00
|
|
|
FindRouterMessage(const Key_t& from, const RouterID& target, uint64_t id)
|
2018-07-11 13:20:14 +00:00
|
|
|
: IMessage(from), K(target), txid(id)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-08-27 13:44:16 +00:00
|
|
|
// exploritory
|
|
|
|
FindRouterMessage(const Key_t& from, uint64_t id)
|
|
|
|
: IMessage(from), exploritory(true), txid(id)
|
|
|
|
{
|
|
|
|
K.Randomize();
|
|
|
|
}
|
|
|
|
|
2018-07-11 13:20:14 +00:00
|
|
|
~FindRouterMessage();
|
|
|
|
|
|
|
|
bool
|
|
|
|
BEncode(llarp_buffer_t* buf) const;
|
|
|
|
|
|
|
|
bool
|
|
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* val);
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
HandleMessage(llarp_dht_context* ctx,
|
2018-09-02 18:25:42 +00:00
|
|
|
std::vector< std::unique_ptr< IMessage > >& replies) const;
|
2018-07-11 13:20:14 +00:00
|
|
|
|
2018-08-29 20:40:26 +00:00
|
|
|
RouterID K;
|
2018-07-11 13:20:14 +00:00
|
|
|
bool iterative = false;
|
2018-08-27 13:44:16 +00:00
|
|
|
bool exploritory = false;
|
2018-07-11 13:20:14 +00:00
|
|
|
uint64_t txid = 0;
|
|
|
|
uint64_t version = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// variant of FindRouterMessage relayed via path
|
|
|
|
struct RelayedFindRouterMessage : 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
|
|
|
|
virtual bool
|
|
|
|
HandleMessage(llarp_dht_context* ctx,
|
2018-09-02 18:25:42 +00:00
|
|
|
std::vector< std::unique_ptr< IMessage > >& replies) const;
|
2018-07-11 13:20:14 +00:00
|
|
|
};
|
2018-07-17 04:37:50 +00:00
|
|
|
} // namespace dht
|
|
|
|
} // namespace llarp
|
2018-08-27 13:44:16 +00:00
|
|
|
#endif
|