lokinet/llarp/dht/localtaglookup.cpp

46 lines
1.3 KiB
C++
Raw Normal View History

2019-01-22 01:14:02 +00:00
#include <dht/localtaglookup.hpp>
#include <dht/context.hpp>
#include <dht/messages/gotintro.hpp>
2019-06-17 23:19:39 +00:00
#include <path/path_context.hpp>
#include <router/abstractrouter.hpp>
#include <routing/dht_message.hpp>
2019-01-22 01:14:02 +00:00
namespace llarp
{
namespace dht
{
LocalTagLookup::LocalTagLookup(const PathID_t &path, uint64_t txid,
2019-08-02 09:27:27 +00:00
const service::Tag &_target,
2019-02-05 00:41:33 +00:00
AbstractContext *ctx)
2019-08-02 09:27:27 +00:00
: TagLookup(TXOwner{ctx->OurKey(), txid}, _target, ctx, 0)
2019-01-22 01:14:02 +00:00
, localPath(path)
{
}
void
LocalTagLookup::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;
}
routing::DHTMessage msg;
msg.M.emplace_back(new GotIntroMessage(valuesFound, whoasked.txid));
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