mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
39 lines
915 B
C++
39 lines
915 B
C++
#include <dht/explorenetworkjob.hpp>
|
|
|
|
#include <dht/context.hpp>
|
|
#include <dht/messages/findrouter.hpp>
|
|
#include <router/abstractrouter.hpp>
|
|
|
|
#include <nodedb.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace dht
|
|
{
|
|
void
|
|
ExploreNetworkJob::Start(const TXOwner &peer)
|
|
{
|
|
parent->DHTSendTo(peer.node.as_array(), new FindRouterMessage(peer.txid));
|
|
}
|
|
|
|
void
|
|
ExploreNetworkJob::SendReply()
|
|
{
|
|
llarp::LogDebug("got ", valuesFound.size(), " routers from exploration");
|
|
|
|
auto router = parent->GetRouter();
|
|
using std::placeholders::_1;
|
|
for(const auto &pk : valuesFound)
|
|
{
|
|
// lookup router
|
|
if(router and router->nodedb()->Has(pk))
|
|
continue;
|
|
parent->LookupRouter(
|
|
pk,
|
|
std::bind(&AbstractRouter::HandleDHTLookupForExplore, router, pk,
|
|
_1));
|
|
}
|
|
}
|
|
} // namespace dht
|
|
} // namespace llarp
|