lokinet/llarp/dns/dotlokilookup.hpp

40 lines
1.1 KiB
C++
Raw Normal View History

2019-01-11 01:19:36 +00:00
#ifndef LLARP_DNS_DOTLOKILOOKUP_HPP
#define LLARP_DNS_DOTLOKILOOKUP_HPP
#include <dnsd.hpp>
2018-12-12 02:15:08 +00:00
#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)
2018-10-18 12:15:41 +00:00
// we can use DNSc for access to the logic
2018-12-10 14:14:55 +00:00
llarp::Logic *logic;
2018-10-18 12:15:41 +00:00
/// which ip tracker to use
struct dns_iptracker *ip_tracker;
/// tunEndpoint
2018-09-22 10:20:15 +00:00
// 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;
2018-09-22 10:20:15 +00:00
// 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