mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
21930cf667
* initial relay side lns * fix typo * add reserved names and refactor test for dns * lns name decryption * all wired up (allegedly) * refact to use service::EncryptedName for LNS responses to include nonce with ciphertext * fully rwemove tag_lookup_job * replace lns cache with DecayingHashTable * check for lns name validity against the following rules: * not localhost.loki, loki.loki, or snode.loki * if it contains no dash then max 32 characters long, not including the .loki tld (and also assuming a leading subdomain has been stripped) * These are from general DNS requirements, and also enforced in registrations: * Must be all [A-Za-z0-9-]. (A-Z will be lower-cased by the RPC call). * cannot start or end with a - * max 63 characters long if it does contain a dash * cannot contain -- in the third and fourth characters unless it starts with xn-- * handle timeout in name lookup job by calling the right handler with std::nullopt
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
#ifndef LLARP_SERVICE_HIDDEN_SERVICE_ADDRESS_LOOKUP_HPP
|
|
#define LLARP_SERVICE_HIDDEN_SERVICE_ADDRESS_LOOKUP_HPP
|
|
|
|
#include <routing/dht_message.hpp>
|
|
#include <service/intro_set.hpp>
|
|
#include <service/lookup.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace service
|
|
{
|
|
struct Endpoint;
|
|
struct HiddenServiceAddressLookup : public IServiceLookup
|
|
{
|
|
const PubKey rootkey;
|
|
uint64_t relayOrder;
|
|
const dht::Key_t location;
|
|
using HandlerFunc =
|
|
std::function<bool(const Address&, std::optional<IntroSet>, const RouterID&)>;
|
|
HandlerFunc handle;
|
|
|
|
HiddenServiceAddressLookup(
|
|
Endpoint* p,
|
|
HandlerFunc h,
|
|
const dht::Key_t& location,
|
|
const PubKey& rootkey,
|
|
uint64_t relayOrder,
|
|
uint64_t tx);
|
|
|
|
~HiddenServiceAddressLookup() override = default;
|
|
|
|
bool
|
|
HandleIntrosetResponse(const std::set<EncryptedIntroSet>& results) override;
|
|
|
|
std::shared_ptr<routing::IMessage>
|
|
BuildRequestMessage() override;
|
|
};
|
|
} // namespace service
|
|
} // namespace llarp
|
|
|
|
#endif
|