mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
34 lines
806 B
C++
34 lines
806 B
C++
#include <service/lookup.hpp>
|
|
|
|
#include <path/path.hpp>
|
|
#include <util/time.hpp>
|
|
#include <router/abstractrouter.hpp>
|
|
#include <util/logic.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
struct AbstractRouter;
|
|
|
|
namespace service
|
|
{
|
|
IServiceLookup::IServiceLookup(ILookupHolder *p, uint64_t tx,
|
|
const std::string &n)
|
|
: parent(p), txid(tx), name(n)
|
|
{
|
|
m_created = time_now_ms();
|
|
p->PutLookup(this, tx);
|
|
}
|
|
|
|
bool
|
|
IServiceLookup::SendRequestViaPath(path::Path_ptr path, AbstractRouter *r)
|
|
{
|
|
auto msg = BuildRequestMessage();
|
|
if(!msg)
|
|
return false;
|
|
endpoint = path->Endpoint();
|
|
r->logic()->queue_func([=]() { path->SendRoutingMessage(*msg, r); });
|
|
return true;
|
|
}
|
|
} // namespace service
|
|
} // namespace llarp
|