mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
dcb48db5fe
* enable client relay profiling by default * macos dns fixes * improve peer profiling algorithm to track timeouts vs failures * remove debug ioctl call in tuntap code * use ub_wait instead of ub_process as that was what was there before * const correctness * DRY out checking for SIIT * typofix * correct name
56 lines
1.1 KiB
C++
56 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <unbound.h>
|
|
#include <mutex>
|
|
#include <atomic>
|
|
#include <memory>
|
|
#include <queue>
|
|
|
|
#include <ev/ev.hpp>
|
|
#include <util/thread/logic.hpp>
|
|
|
|
#include <dns/message.hpp>
|
|
|
|
#ifdef _WIN32
|
|
#include <thread>
|
|
#endif
|
|
|
|
namespace llarp::dns
|
|
{
|
|
using ReplyFunction = std::function<void(SockAddr source, std::vector<byte_t> buf)>;
|
|
using FailFunction = std::function<void(SockAddr source, Message msg)>;
|
|
|
|
class UnboundResolver : public std::enable_shared_from_this<UnboundResolver>
|
|
{
|
|
private:
|
|
ub_ctx* unboundContext;
|
|
|
|
std::atomic<bool> started;
|
|
std::unique_ptr<std::thread> runner;
|
|
|
|
llarp_ev_loop_ptr eventLoop;
|
|
ReplyFunction replyFunc;
|
|
FailFunction failFunc;
|
|
|
|
void
|
|
Reset();
|
|
|
|
public:
|
|
UnboundResolver(llarp_ev_loop_ptr eventLoop, ReplyFunction replyFunc, FailFunction failFunc);
|
|
|
|
static void
|
|
Callback(void* data, int err, ub_result* result);
|
|
|
|
// upstream resolver IP can be IPv4 or IPv6
|
|
bool
|
|
Init();
|
|
|
|
bool
|
|
AddUpstreamResolver(const std::string& upstreamResolverIP);
|
|
|
|
void
|
|
Lookup(const SockAddr& source, Message msg);
|
|
};
|
|
|
|
} // namespace llarp::dns
|