2019-01-22 01:14:02 +00:00
|
|
|
#ifndef LLARP_DHT_LOCALSERVICEADDRESSLOOKUP
|
|
|
|
#define LLARP_DHT_LOCALSERVICEADDRESSLOOKUP
|
|
|
|
|
|
|
|
#include <dht/serviceaddresslookup.hpp>
|
|
|
|
|
|
|
|
#include <path/path_types.hpp>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace dht
|
|
|
|
{
|
|
|
|
struct LocalServiceAddressLookup : public ServiceAddressLookup
|
|
|
|
{
|
|
|
|
PathID_t localPath;
|
|
|
|
|
|
|
|
LocalServiceAddressLookup(const PathID_t &pathid, uint64_t txid,
|
2019-02-05 00:41:33 +00:00
|
|
|
const service::Address &addr,
|
|
|
|
AbstractContext *ctx,
|
2019-01-22 01:14:02 +00:00
|
|
|
__attribute__((unused)) const Key_t &askpeer);
|
|
|
|
|
|
|
|
void
|
|
|
|
SendReply() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dht
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif
|