2019-01-22 01:14:02 +00:00
|
|
|
#ifndef LLARP_DHT_LOCALSERVICEADDRESSLOOKUP
|
|
|
|
#define LLARP_DHT_LOCALSERVICEADDRESSLOOKUP
|
|
|
|
|
2021-03-09 22:24:35 +00:00
|
|
|
#include "serviceaddresslookup.hpp"
|
2019-01-22 01:14:02 +00:00
|
|
|
|
2021-03-09 22:24:35 +00:00
|
|
|
#include <llarp/path/path_types.hpp>
|
2019-01-22 01:14:02 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace dht
|
|
|
|
{
|
|
|
|
struct LocalServiceAddressLookup : public ServiceAddressLookup
|
|
|
|
{
|
|
|
|
PathID_t localPath;
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
LocalServiceAddressLookup(
|
|
|
|
const PathID_t& pathid,
|
|
|
|
uint64_t txid,
|
|
|
|
uint64_t relayOrder,
|
|
|
|
const Key_t& addr,
|
|
|
|
AbstractContext* ctx,
|
2021-03-03 20:44:32 +00:00
|
|
|
[[maybe_unused]] const Key_t& askpeer);
|
2019-01-22 01:14:02 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
SendReply() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dht
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif
|