mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
28 lines
706 B
C++
28 lines
706 B
C++
#include <llarp/path.hpp>
|
|
#include <llarp/service/endpoint.hpp>
|
|
#include <llarp/service/lookup.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace service
|
|
{
|
|
IServiceLookup::IServiceLookup(ILookupHolder *p, uint64_t tx,
|
|
const std::string &n)
|
|
: parent(p), txid(tx), name(n)
|
|
{
|
|
m_created = llarp_time_now_ms();
|
|
p->PutLookup(this, tx);
|
|
}
|
|
|
|
bool
|
|
IServiceLookup::SendRequestViaPath(llarp::path::Path *path, llarp_router *r)
|
|
{
|
|
auto msg = BuildRequestMessage();
|
|
if(!msg)
|
|
return false;
|
|
auto result = path->SendRoutingMessage(msg, r);
|
|
delete msg;
|
|
return result;
|
|
}
|
|
} // namespace service
|
|
} // namespace llarp
|