lokinet/llarp/dht/localrouterlookup.cpp

69 lines
1.9 KiB
C++
Raw Normal View History

2019-01-22 01:14:02 +00:00
#include <dht/localrouterlookup.hpp>
#include <dht/context.hpp>
#include <dht/messages/gotrouter.hpp>
2019-06-17 23:19:39 +00:00
#include <path/path_context.hpp>
#include <router/abstractrouter.hpp>
#include <routing/dht_message.hpp>
2019-09-01 12:10:49 +00:00
#include <util/logging/logger.hpp>
2019-01-22 01:14:02 +00:00
namespace llarp
{
namespace dht
{
LocalRouterLookup::LocalRouterLookup(const PathID_t &path, uint64_t txid,
2019-08-02 09:27:27 +00:00
const RouterID &_target,
2019-02-05 00:41:33 +00:00
AbstractContext *ctx)
2019-08-02 09:27:27 +00:00
: RecursiveRouterLookup(TXOwner{ctx->OurKey(), txid}, _target, ctx,
2019-01-22 01:14:02 +00:00
nullptr)
, localPath(path)
{
}
void
LocalRouterLookup::SendReply()
{
auto path = parent->GetRouter()->pathContext().GetByUpstream(
2019-01-22 01:14:02 +00:00
parent->OurKey().as_array(), localPath);
if(!path)
{
llarp::LogWarn(
"did not send reply for relayed dht request, no such local path "
"for pathid=",
localPath);
return;
}
2019-02-08 19:43:25 +00:00
if(valuesFound.size())
{
RouterContact found;
for(const auto &rc : valuesFound)
{
if(rc.OtherIsNewer(found))
found = rc;
}
valuesFound.clear();
2020-01-15 15:43:21 +00:00
if(not found.pubkey.IsZero())
{
valuesFound.resize(1);
valuesFound[0] = found;
}
else
{
llarp::LogWarn("We found a null RC for dht request, dropping it");
}
2019-02-08 19:43:25 +00:00
}
2019-01-22 01:14:02 +00:00
routing::DHTMessage msg;
msg.M.emplace_back(new GotRouterMessage(parent->OurKey(), whoasked.txid,
valuesFound, true));
if(!path->SendRoutingMessage(msg, parent->GetRouter()))
2019-01-22 01:14:02 +00:00
{
llarp::LogWarn(
"failed to send routing message when informing result of dht "
"request, pathid=",
localPath);
}
}
} // namespace dht
} // namespace llarp