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,
|
2020-02-14 18:06:19 +00:00
|
|
|
uint64_t relayOrder, const Key_t &addr,
|
2020-02-13 22:19:12 +00:00
|
|
|
AbstractContext *ctx,
|
2019-01-22 01:14:02 +00:00
|
|
|
__attribute__((unused)) const Key_t &askpeer);
|
|
|
|
|
|
|
|
void
|
|
|
|
SendReply() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dht
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif
|