mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-17 15:25:35 +00:00
fa4471f566
- RemoteRC supplants most of the functionality throughout the code of RouterContact - Next step will be to sort out CI issues, then see if we can get rid of either LocalRC (and therefore RouterContact entirely)
14 lines
283 B
C++
14 lines
283 B
C++
#include "router_lookup_job.hpp"
|
|
|
|
#include "endpoint.hpp"
|
|
|
|
#include <utility>
|
|
|
|
namespace llarp::service
|
|
{
|
|
RouterLookupJob::RouterLookupJob(Endpoint* p, RouterLookupHandler h)
|
|
: handler(std::move(h)), txid(p->GenTXID()), started(p->Now())
|
|
{}
|
|
|
|
} // namespace llarp::service
|