]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
modify CHANGES [GL #2809]
authorArtem Boldariev <artem@boldariev.com>
Thu, 20 May 2021 15:17:26 +0000 (18:17 +0300)
committerArtem Boldariev <artem@boldariev.com>
Fri, 16 Jul 2021 08:50:22 +0000 (11:50 +0300)
Document the new HTTP specific options in the CHANGES file.

CHANGES

diff --git a/CHANGES b/CHANGES
index 4c3dc38ef72bb73822398a3da433ed07a36bc4c5..71dfbfcc1b453db010c3072024d7822b351105c3 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,23 @@
+5684.  [func]          Changes to the DNS-over-HTTP (DoH) configuration
+                       syntax:
+
+                       - The maximum number of active DoH connections
+                         can now be set using the "http-listener-clients"
+                         option. The default is 300.
+                       - The maximum number of concurrent HTTP/2 streams
+                         per connection can be set using via the
+                         "http-streams-per-connection" option. The default
+                         is 100.
+                       - Both of these values also can be set on a per-
+                         listener basis using the "listener-clients" and
+                         "streams-per-connection" parameters in an
+                         "http" statement. For example:
+                         http <name> {
+                             listener-clients <number>;
+                             streams-per-connection <number>;
+                         };
+                       [GL #2809]
+
 5683.  [func]          The configuration checking code now verifies
                        HTTP paths. [GL !5231]