mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
be234e4b6e
* snode to snode direct traffic * wire up dns on service node tun
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#ifndef LIBLLARP_DNS_DOTLOKILOOKUP_HPP
|
|
#define LIBLLARP_DNS_DOTLOKILOOKUP_HPP
|
|
|
|
#include <dnsd.hpp>
|
|
#include <service/address.hpp>
|
|
|
|
using map_address_hook_func =
|
|
std::function< bool(const byte_t *addr, bool isSNode, uint32_t ip) >;
|
|
|
|
/// dotLokiLookup context/config
|
|
struct dotLokiLookup
|
|
{
|
|
/// for timers (MAYBEFIXME? maybe we decouple this, yes pls have a generic
|
|
/// passed in)
|
|
// we can use DNSc for access to the logic
|
|
llarp::Logic *logic;
|
|
|
|
/// which ip tracker to use
|
|
struct dns_iptracker *ip_tracker;
|
|
|
|
/// tunEndpoint
|
|
// llarp::handlers::TunEndpoint *tunEndpoint; // is this even needed here?
|
|
void *user; // well dotLokiLookup current uses it to access the tun if
|
|
// pointer to tunendpoint properties?
|
|
// llarp::service::Context *hiddenServiceContext;
|
|
|
|
// need a way to reference
|
|
// 1. mapaddress
|
|
map_address_hook_func map_address_handler;
|
|
// std::function< bool(const llarp::service::Address &addr, uint32_t ip),
|
|
// llarp::handlers::TunEndpoint * > callback;
|
|
// 2. prefetch
|
|
};
|
|
|
|
dnsd_query_hook_response *
|
|
llarp_dotlokilookup_handler(std::string name,
|
|
const dnsd_question_request *request);
|
|
|
|
#endif
|