mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
38 lines
877 B
C++
38 lines
877 B
C++
#ifndef LLARP_DHT_SERVICEADDRESSLOOKUP
|
|
#define LLARP_DHT_SERVICEADDRESSLOOKUP
|
|
|
|
#include <dht/key.hpp>
|
|
#include <dht/tx.hpp>
|
|
#include <service/address.hpp>
|
|
#include <service/intro_set.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace dht
|
|
{
|
|
struct TXOwner;
|
|
|
|
struct ServiceAddressLookup : public TX< Key_t, service::EncryptedIntroSet >
|
|
{
|
|
service::EncryptedIntroSetLookupHandler handleResult;
|
|
uint32_t relayOrder;
|
|
|
|
ServiceAddressLookup(const TXOwner &asker, const Key_t &addr,
|
|
AbstractContext *ctx, uint32_t relayOrder,
|
|
service::EncryptedIntroSetLookupHandler handler);
|
|
|
|
bool
|
|
Validate(const service::EncryptedIntroSet &value) const override;
|
|
|
|
void
|
|
Start(const TXOwner &peer) override;
|
|
|
|
void
|
|
SendReply() override;
|
|
};
|
|
} // namespace dht
|
|
|
|
} // namespace llarp
|
|
|
|
#endif
|