mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-17 15:25:35 +00:00
33 lines
772 B
C++
33 lines
772 B
C++
#include <dht/explorenetworkjob.hpp>
|
|
|
|
#include <dht/context.hpp>
|
|
#include <dht/messages/findrouter.hpp>
|
|
#include <router/router.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::LogInfo("got ", valuesFound.size(), " routers from exploration");
|
|
|
|
auto router = parent->GetRouter();
|
|
using std::placeholders::_1;
|
|
for(const auto &pk : valuesFound)
|
|
{
|
|
// lookup router
|
|
parent->LookupRouter(
|
|
pk, std::bind(&Router::HandleDHTLookupForExplore, router, pk, _1));
|
|
}
|
|
}
|
|
} // namespace dht
|
|
} // namespace llarp
|