mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
43 lines
999 B
C++
43 lines
999 B
C++
#include <dht/taglookup.hpp>
|
|
|
|
#include <dht/context.hpp>
|
|
#include <dht/messages/gotintro.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace dht
|
|
{
|
|
bool
|
|
TagLookup::Validate(const service::EncryptedIntroSet &introset) const
|
|
{
|
|
if(!introset.Verify(parent->Now()))
|
|
{
|
|
llarp::LogWarn("got invalid introset from tag lookup");
|
|
return false;
|
|
}
|
|
if(not introset.topic.has_value())
|
|
return false;
|
|
if(introset.topic.value() != target)
|
|
{
|
|
llarp::LogWarn("got introset with missmatched topic in tag lookup");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void
|
|
TagLookup::Start(const TXOwner &peer)
|
|
{
|
|
parent->DHTSendTo(peer.node.as_array(),
|
|
new FindIntroMessage(target, peer.txid, R));
|
|
}
|
|
|
|
void
|
|
TagLookup::SendReply()
|
|
{
|
|
parent->DHTSendTo(whoasked.node.as_array(),
|
|
new GotIntroMessage({}, whoasked.txid));
|
|
}
|
|
} // namespace dht
|
|
} // namespace llarp
|