]> 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 10:26:16 +0000 (11:26 +0100)
(cherry picked from commit 0c35bda762a97a27c4c580d579851ab0a7f144c4)

CHANGES
doc/notes/notes-current.rst

diff --git a/CHANGES b/CHANGES
index f647c2fe27db5b4d712624a89315240da81807a8..5a5292c1745ff1d494feb8e9074696464aacfd5f 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]
+
 5804.  [func]          Add a debug log message when starting and ending
                        the task exclusive mode. [GL #3137]
 
index 34b4e5f445e4606ef5e44ee4af7288664a9e2a9e..62943d3549a58c8edfe371274d47178f389215c5 100644 (file)
@@ -60,3 +60,9 @@ Bug Fixes
 
 - Build errors were introduced in some DLZ modules due to an incomplete
   change in the previous release. This has been fixed. :gl:`#3111`
+
+- 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`