mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
273270916e
This commit reflects changes to clang-format rules. Unfortunately, these rule changes create a massive change to the codebase, which causes an apparent rewrite of git history. Git blame's --ignore-rev flag can be used to ignore this commit when attempting to `git blame` some code.
42 lines
896 B
C++
42 lines
896 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<TXOwner, service::EncryptedIntroSet>
|
|
{
|
|
Key_t location;
|
|
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
|