You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/service/router_lookup_job.cpp

16 lines
336 B
C++

#include <service/router_lookup_job.hpp>
#include <service/endpoint.hpp>
#include <utility>
namespace llarp
{
namespace service
{
RouterLookupJob::RouterLookupJob(Endpoint* p, RouterLookupHandler h)
: handler(std::move(h)), txid(p->GenTXID()), started(p->Now())
{}
} // namespace service
} // namespace llarp