mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
17 lines
341 B
C++
17 lines
341 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
|