2019-01-22 01:14:02 +00:00
|
|
|
#ifndef LLARP_DHT_SERVICEADDRESSLOOKUP
|
|
|
|
#define LLARP_DHT_SERVICEADDRESSLOOKUP
|
|
|
|
|
|
|
|
#include <dht/key.hpp>
|
|
|
|
#include <dht/tx.hpp>
|
|
|
|
#include <service/address.hpp>
|
2019-04-22 18:35:19 +00:00
|
|
|
#include <service/intro_set.hpp>
|
2019-01-22 01:14:02 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace dht
|
|
|
|
{
|
|
|
|
struct TXOwner;
|
|
|
|
|
2020-03-01 15:59:19 +00:00
|
|
|
struct ServiceAddressLookup
|
|
|
|
: public TX< TXOwner, service::EncryptedIntroSet >
|
2019-01-22 01:14:02 +00:00
|
|
|
{
|
2020-03-01 15:59:19 +00:00
|
|
|
Key_t location;
|
2020-01-27 21:30:41 +00:00
|
|
|
service::EncryptedIntroSetLookupHandler handleResult;
|
2020-02-13 22:19:12 +00:00
|
|
|
uint32_t relayOrder;
|
2019-01-22 01:14:02 +00:00
|
|
|
|
2020-01-27 21:30:41 +00:00
|
|
|
ServiceAddressLookup(const TXOwner &asker, const Key_t &addr,
|
2020-02-20 18:18:05 +00:00
|
|
|
AbstractContext *ctx, uint32_t relayOrder,
|
2020-01-27 21:30:41 +00:00
|
|
|
service::EncryptedIntroSetLookupHandler handler);
|
2019-01-22 01:14:02 +00:00
|
|
|
|
|
|
|
bool
|
2020-01-27 21:30:41 +00:00
|
|
|
Validate(const service::EncryptedIntroSet &value) const override;
|
2019-01-22 01:14:02 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
Start(const TXOwner &peer) override;
|
|
|
|
|
2019-07-30 23:42:13 +00:00
|
|
|
void
|
2019-01-22 01:14:02 +00:00
|
|
|
SendReply() override;
|
|
|
|
};
|
|
|
|
} // namespace dht
|
|
|
|
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif
|