mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-07 07:37:02 +02:00
DOC: quic: fix default minimal value for max window size
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.
This commit is contained in:
parent
bba679026c
commit
103d860777
@ -16665,7 +16665,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
|
||||
|
Loading…
Reference in New Issue
Block a user