mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
273270916e
This commit reflects changes to clang-format rules. Unfortunately, these rule changes create a massive change to the codebase, which causes an apparent rewrite of git history. Git blame's --ignore-rev flag can be used to ignore this commit when attempting to `git blame` some code.
72 lines
1.8 KiB
C++
72 lines
1.8 KiB
C++
#include <dht/serviceaddresslookup.hpp>
|
|
|
|
#include <dht/context.hpp>
|
|
#include <dht/messages/findintro.hpp>
|
|
#include <dht/messages/gotintro.hpp>
|
|
#include <utility>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace dht
|
|
{
|
|
ServiceAddressLookup::ServiceAddressLookup(
|
|
const TXOwner& asker,
|
|
const Key_t& addr,
|
|
AbstractContext* ctx,
|
|
uint32_t order,
|
|
service::EncryptedIntroSetLookupHandler handler)
|
|
: TX<TXOwner, service::EncryptedIntroSet>(asker, asker, ctx)
|
|
, location(addr)
|
|
, handleResult(std::move(handler))
|
|
, relayOrder(order)
|
|
{
|
|
peersAsked.insert(ctx->OurKey());
|
|
}
|
|
|
|
bool
|
|
ServiceAddressLookup::Validate(const service::EncryptedIntroSet& value) const
|
|
{
|
|
if (!value.Verify(parent->Now()))
|
|
{
|
|
llarp::LogWarn("Got invalid introset from service lookup");
|
|
return false;
|
|
}
|
|
if (value.derivedSigningKey != location)
|
|
{
|
|
llarp::LogWarn("got introset with wrong target from service lookup");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void
|
|
ServiceAddressLookup::Start(const TXOwner& peer)
|
|
{
|
|
parent->DHTSendTo(
|
|
peer.node.as_array(), new FindIntroMessage(peer.txid, location, relayOrder));
|
|
}
|
|
|
|
void
|
|
ServiceAddressLookup::SendReply()
|
|
{
|
|
// get newest introset
|
|
if (valuesFound.size())
|
|
{
|
|
llarp::service::EncryptedIntroSet found;
|
|
for (const auto& introset : valuesFound)
|
|
{
|
|
if (found.OtherIsNewer(introset))
|
|
found = introset;
|
|
}
|
|
valuesFound.clear();
|
|
valuesFound.emplace_back(found);
|
|
}
|
|
if (handleResult)
|
|
{
|
|
handleResult(valuesFound);
|
|
}
|
|
parent->DHTSendTo(whoasked.node.as_array(), new GotIntroMessage(valuesFound, whoasked.txid));
|
|
}
|
|
} // namespace dht
|
|
} // namespace llarp
|