lokinet/llarp/dht/serviceaddresslookup.hpp

42 lines
900 B
C++
Raw Normal View History

2019-01-22 01:14:02 +00:00
#ifndef LLARP_DHT_SERVICEADDRESSLOOKUP
#define LLARP_DHT_SERVICEADDRESSLOOKUP
#include "key.hpp"
#include "tx.hpp"
#include <llarp/service/address.hpp>
#include <llarp/service/intro_set.hpp>
2019-01-22 01:14:02 +00:00
namespace llarp
{
namespace dht
{
struct TXOwner;
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;
uint32_t relayOrder;
2019-01-22 01:14:02 +00:00
ServiceAddressLookup(
const TXOwner& asker,
const Key_t& addr,
AbstractContext* ctx,
uint32_t relayOrder,
service::EncryptedIntroSetLookupHandler handler);
2019-01-22 01:14:02 +00:00
bool
Validate(const service::EncryptedIntroSet& value) const override;
2019-01-22 01:14:02 +00:00
void
Start(const TXOwner& peer) override;
2019-01-22 01:14:02 +00:00
2019-07-30 23:42:13 +00:00
void
2019-01-22 01:14:02 +00:00
SendReply() override;
};
} // namespace dht
} // namespace llarp
#endif