DOC: quic: fix default minimal value for max window size
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Wed, 14 Aug 2024 16:25:01 +0000 (18:25 +0200)
committerWilly Tarreau <w@1wt.eu>
Mon, 2 Sep 2024 18:09:25 +0000 (20:09 +0200)
It is possible to override the default QUIC congestion algorithm on a
bind line. With the same setting, it is also possible to specify the
maximum congestion window size.

The parser rejects values outside of the range between 10k and 4g. This
is in contradiction with the documentation which specify 1k as the lower
value. Correct this value in the documentation.

This should be backported up to 2.9.

(cherry picked from commit 103d8607776dbbf6f64eaf82359ec7a5dd7e3ebb)
Signed-off-by: Willy Tarreau <w@1wt.eu>

doc/configuration.txt

index 0e0e210..f4f8223 100644 (file)
@@ -16525,7 +16525,7 @@ quic-cc-algo { cubic | newreno }(max_window)
   This is a QUIC specific setting to select the congestion control algorithm
   for any connection attempts to the configured QUIC listeners. They are similar
   to those used by TCP. An optional value in bytes may be used to specify the
-  maximum window size. It must be greater than 1k and smaller than 4g.
+  maximum window size. It must be greater than 10k and smaller than 4g.
 
   Default value: cubic
   Default window value: tune.quic.frontend.conn-tx-buffers.limit * tune.bufsize