#ifndef LLARP_DHT_EXPLORENETWORKJOB #define LLARP_DHT_EXPLORENETWORKJOB #include #include namespace llarp { namespace dht { struct ExploreNetworkJob : public TX { ExploreNetworkJob(const RouterID& peer, AbstractContext* ctx) : TX(TXOwner{}, peer, ctx) {} bool Validate(const RouterID&) const override { // TODO: check with lokid return true; } void Start(const TXOwner& peer) override; void SendReply() override; }; } // namespace dht } // namespace llarp #endif