]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add CHANGES and release note for [GL #3132]
authorOndřej Surý <ondrej@isc.org>
Thu, 10 Feb 2022 10:14:58 +0000 (11:14 +0100)
committerOndřej Surý <ondrej@isc.org>
Thu, 17 Feb 2022 08:07:43 +0000 (09:07 +0100)
CHANGES
doc/notes/notes-current.rst

diff --git a/CHANGES b/CHANGES
index 7597fce9d882ef257146d78d4d82a3ff40b5b065..6e09a1491eededcb5afd09b5b023951c881f14bd 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+5807.  [bug]           Add a TCP "write" timer, and time out writing
+                       connections after the "tcp-idle-timeout" period
+                       has elapsed. [GL #3132]
+
 5806.  [bug]           An error in checking the "blackhole" ACL could cause
                        DNS requests sent by named to fail if the
                        destination address or prefix was specifically
index c9ae25023b8442a18ff36166d1b35c2708d929c7..18e67bd99234dc66a1c9299ea1c8bea5307ef685 100644 (file)
@@ -70,3 +70,9 @@ Bug Fixes
   to ``none``.  ``blackhole`` worked correctly when it was left unset, or
   if only positive-match elements were included. This has now been fixed.
   :gl:`#3157`
+
+- TCP connections could hang indefinitely if the TCP write buffers
+  were full because of the other party not reading sent data.  This has
+  been fixed by adding a "write" timer. Connections that are hung
+  while writing will now time out after the ``tcp-idle-timeout`` period
+  has elapsed. :gl:`#3132`