2021-03-09 22:24:35 +00:00
|
|
|
#include "localtaglookup.hpp"
|
2019-01-22 01:14:02 +00:00
|
|
|
|
2021-03-09 22:24:35 +00:00
|
|
|
#include "context.hpp"
|
|
|
|
#include <llarp/dht/messages/gotintro.hpp>
|
|
|
|
#include <llarp/path/path_context.hpp>
|
2023-09-15 14:55:32 +00:00
|
|
|
#include <llarp/router/router.hpp>
|
2023-08-31 16:28:02 +00:00
|
|
|
#include <llarp/routing/path_dht_message.hpp>
|
2019-01-22 01:14:02 +00:00
|
|
|
|
2023-08-31 16:28:02 +00:00
|
|
|
namespace llarp::dht
|
2019-01-22 01:14:02 +00:00
|
|
|
{
|
2023-08-31 16:28:02 +00:00
|
|
|
LocalTagLookup::LocalTagLookup(
|
2023-09-13 15:57:29 +00:00
|
|
|
const PathID_t& path,
|
|
|
|
uint64_t txid,
|
|
|
|
const service::Tag& _target,
|
|
|
|
AbstractDHTMessageHandler* ctx)
|
2023-08-31 16:28:02 +00:00
|
|
|
: TagLookup(TXOwner{ctx->OurKey(), txid}, _target, ctx, 0), localPath(path)
|
|
|
|
{}
|
2019-01-22 01:14:02 +00:00
|
|
|
|
2023-08-31 16:28:02 +00:00
|
|
|
void
|
|
|
|
LocalTagLookup::SendReply()
|
|
|
|
{
|
|
|
|
auto path =
|
2023-09-15 14:55:32 +00:00
|
|
|
parent->GetRouter()->path_context().GetByUpstream(parent->OurKey().as_array(), localPath);
|
2023-08-31 16:28:02 +00:00
|
|
|
if (!path)
|
|
|
|
{
|
|
|
|
llarp::LogWarn(
|
|
|
|
"did not send reply for relayed dht request, no such local path "
|
|
|
|
"for pathid=",
|
|
|
|
localPath);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
routing::PathDHTMessage msg;
|
|
|
|
msg.dht_msgs.emplace_back(new GotIntroMessage(valuesFound, whoasked.txid));
|
|
|
|
if (!path->SendRoutingMessage(msg, parent->GetRouter()))
|
2019-01-22 01:14:02 +00:00
|
|
|
{
|
2023-08-31 16:28:02 +00:00
|
|
|
llarp::LogWarn(
|
|
|
|
"failed to send routing message when informing result of dht "
|
|
|
|
"request, pathid=",
|
|
|
|
localPath);
|
2019-01-22 01:14:02 +00:00
|
|
|
}
|
2023-08-31 16:28:02 +00:00
|
|
|
}
|
|
|
|
} // namespace llarp::dht
|