mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
7caa87862e
All #ifndef guards on headers have been removed, I think, in favor of #pragma once Headers are now included as `#include "filename"` if the included file resides in the same directory as the file including it, or any subdirectory therein. Otherwise they are included as `#include <project/top/dir/relative/path/filename>` The above does not include system/os headers.
72 lines
1.8 KiB
C++
72 lines
1.8 KiB
C++
#include "serviceaddresslookup.hpp"
|
|
|
|
#include "context.hpp"
|
|
#include <llarp/dht/messages/findintro.hpp>
|
|
#include <llarp/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
|