]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: quic: rename min/max fields for congestion window algo
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Thu, 23 Jan 2025 09:47:57 +0000 (10:47 +0100)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Tue, 29 Apr 2025 13:10:06 +0000 (15:10 +0200)
commit2eb1b0cd96f663b9260ee48921612566417b3b8d
tree44eb24d5ec6ebc99bbd8309b0c4920af113ee305
parent62dfe1fc8711bcd486b18c3cd001d4ebdecb53c8
MINOR: quic: rename min/max fields for congestion window algo

There was some possible confusion between fields related to congestion
window size min and max limit which cannot be exceeded, and the maximum
value previously reached by the window.

Fix this by adopting a new naming scheme. Enforced limit are now renamed
<limit_max>/<limit_min>, while the previously reached max value is
renamed <cwnd_last_max>.

This should be backported up to 3.1.
include/haproxy/quic_cc-t.h
include/haproxy/quic_cc.h
src/quic_cc_bbr.c
src/quic_cc_cubic.c
src/quic_cc_newreno.c
src/quic_cc_nocc.c
src/quic_cli.c