1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/dht/localrouterlookup.cpp

66 lines
1.7 KiB
C++
Raw Normal View History

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