lokinet/llarp/dht/localserviceaddresslookup.hpp

29 lines
588 B
C++
Raw Normal View History

2019-01-22 01:14:02 +00:00
#ifndef LLARP_DHT_LOCALSERVICEADDRESSLOOKUP
#define LLARP_DHT_LOCALSERVICEADDRESSLOOKUP
#include "serviceaddresslookup.hpp"
2019-01-22 01:14:02 +00:00
#include <llarp/path/path_types.hpp>
2019-01-22 01:14:02 +00:00
namespace llarp::dht
2019-01-22 01:14:02 +00:00
{
struct LocalServiceAddressLookup : public ServiceAddressLookup
2019-01-22 01:14:02 +00:00
{
PathID_t localPath;
2019-01-22 01:14:02 +00:00
LocalServiceAddressLookup(
const PathID_t& pathid,
uint64_t txid,
uint64_t relayOrder,
const Key_t& addr,
AbstractDHTMessageHandler* ctx,
[[maybe_unused]] const Key_t& askpeer);
2019-01-22 01:14:02 +00:00
void
SendReply() override;
};
2019-01-22 01:14:02 +00:00
} // namespace llarp::dht
2019-01-22 01:14:02 +00:00
#endif