Comment 46 for bug 1872118

Revision history for this message
Gianfranco Costamagna (costamagnagianfranco) wrote : Re: DHCP Cluster crashes after a few hours

just to clarify, the change is in bind9-libs and fixes the issue also for my servers.

the change
+--- bind9-libs-9.11.16+dfsg.orig/lib/isc/unix/socket.c
++++ bind9-libs-9.11.16+dfsg/lib/isc/unix/socket.c
+@@ -4050,7 +4050,7 @@ check_write:
+ if (!SOCK_DEAD(sock)) {
+ if (sock->connecting)
+ dispatch_connect(sock);
+- else
++ else if (!sock->pending_send)
+ dispatch_send(sock);
+ }
+ unwatch_write = true;

doesn't change the ABI/API of the library, so no-change rebuilding isc-dhcp package against the fix is not useful.