#include #ifdef UDNS_FOUND #include #include #include #include DNSSocketHandler::DNSSocketHandler(std::shared_ptr& poller, const socket_t socket): SocketHandler(poller, socket) { poller->add_socket_handler(this); } DNSSocketHandler::~DNSSocketHandler() { this->unwatch(); } void DNSSocketHandler::on_recv() { dns_ioevent(nullptr, 0); } bool DNSSocketHandler::is_connected() const { return true; } void DNSSocketHandler::unwatch() { if (this->poller->is_managing_socket(this->socket)) this->poller->remove_socket_handler(this->socket); } void DNSSocketHandler::watch() { this->poller->add_socket_handler(this); } #endif /* UDNS_FOUND */