summaryrefslogtreecommitdiff
path: root/louloulibs/network/dns_socket_handler.cpp
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2016-07-28 10:34:01 +0200
committerlouiz’ <louiz@louiz.org>2016-07-28 10:34:01 +0200
commit11a1c0cc99af9629302184fac2b7adf3ac48516b (patch)
tree6d85e7ca57a110eff3678e8e37626f2052d6fc02 /louloulibs/network/dns_socket_handler.cpp
parentde0eff6e944db11ae3552e0cd2c191997eebaa2f (diff)
downloadbiboumi-11a1c0cc99af9629302184fac2b7adf3ac48516b.tar.gz
biboumi-11a1c0cc99af9629302184fac2b7adf3ac48516b.tar.bz2
biboumi-11a1c0cc99af9629302184fac2b7adf3ac48516b.tar.xz
biboumi-11a1c0cc99af9629302184fac2b7adf3ac48516b.zip
Always remove all the DNS sockets on an c-ares event
Because c-ares may close one of its socket, even if it’s not the one that has the event. Otherwise we may not know when a socket has been removed from our poller (automatically, when close()ed) and this leads to bugs.
Diffstat (limited to 'louloulibs/network/dns_socket_handler.cpp')
-rw-r--r--louloulibs/network/dns_socket_handler.cpp13
1 files changed, 10 insertions, 3 deletions
diff --git a/louloulibs/network/dns_socket_handler.cpp b/louloulibs/network/dns_socket_handler.cpp
index faaabdb..5fd08cb 100644
--- a/louloulibs/network/dns_socket_handler.cpp
+++ b/louloulibs/network/dns_socket_handler.cpp
@@ -8,8 +8,10 @@
#include <ares.h>
DNSSocketHandler::DNSSocketHandler(std::shared_ptr<Poller> poller,
+ DNSHandler& handler,
const socket_t socket):
- SocketHandler(poller, socket)
+ SocketHandler(poller, socket),
+ handler(handler)
{
}
@@ -21,7 +23,7 @@ void DNSSocketHandler::on_recv()
{
// always stop watching send and read events. We will re-watch them if the
// next call to ares_fds tell us to
- this->poller->remove_socket_handler(this->socket);
+ this->handler.remove_all_sockets_from_poller();
::ares_process_fd(DNSHandler::instance.get_channel(), this->socket, ARES_SOCKET_BAD);
}
@@ -29,7 +31,7 @@ void DNSSocketHandler::on_send()
{
// always stop watching send and read events. We will re-watch them if the
// next call to ares_fds tell us to
- this->poller->remove_socket_handler(this->socket);
+ this->handler.remove_all_sockets_from_poller();
::ares_process_fd(DNSHandler::instance.get_channel(), ARES_SOCKET_BAD, this->socket);
}
@@ -38,4 +40,9 @@ bool DNSSocketHandler::is_connected() const
return true;
}
+void DNSSocketHandler::remove_from_poller()
+{
+ this->poller->remove_socket_handler(this->socket);
+}
+
#endif /* CARES_FOUND */