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>
|
2019-02-11 19:45:42 +00:00
|
|
|
#include <router/abstractrouter.hpp>
|
2019-06-15 14:55:13 +00:00
|
|
|
#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()
|
|
|
|
{
|
2019-01-29 02:16:31 +00:00
|
|
|
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));
|
2019-04-22 17:38:29 +00:00
|
|
|
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
|