llarp/dht/localserviceaddresslookup.hpp

Namespaces

Name
llarp
[crypto.hpp]
llarp::dht

Classes

Name
struct llarp::dht::LocalServiceAddressLookup

Source code

#ifndef LLARP_DHT_LOCALSERVICEADDRESSLOOKUP
#define LLARP_DHT_LOCALSERVICEADDRESSLOOKUP

#include "serviceaddresslookup.hpp"

#include <llarp/path/path_types.hpp>

namespace llarp
{
  namespace dht
  {
    struct LocalServiceAddressLookup : public ServiceAddressLookup
    {
      PathID_t localPath;

      LocalServiceAddressLookup(
          const PathID_t& pathid,
          uint64_t txid,
          uint64_t relayOrder,
          const Key_t& addr,
          AbstractContext* ctx,
          [[maybe_unused]] const Key_t& askpeer);

      void
      SendReply() override;
    };

  }  // namespace dht
}  // namespace llarp

#endif

Updated on 2026-01-10 at 22:49:45 +0000