From: Amaury Denoyelle Date: Wed, 7 Jan 2026 08:38:23 +0000 (+0100) Subject: BUG/MINOR: quic: fix deprecated warning for window size keyword X-Git-Tag: v3.4-dev2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e061547d9d3075f36225fec1c8e6dac0f440b210;p=thirdparty%2Fhaproxy.git BUG/MINOR: quic: fix deprecated warning for window size keyword QUIC configuration was cleaned up in the previous release. Several global keyword names were changed to unify the configuration. For each of them the older keyword is marked as deprecated, with a warning to mention the newer alternative. This patch fixes the warning for 'tune.quic.frontend.default-max-size' as the alternative proposed was not correct. The proper value now is 'tune.quic.fe.cc.max-win-size'. This must be backported up to 3.3. --- diff --git a/src/cfgparse-quic.c b/src/cfgparse-quic.c index be5bc1f84..cef99bfe4 100644 --- a/src/cfgparse-quic.c +++ b/src/cfgparse-quic.c @@ -498,7 +498,7 @@ static int cfg_parse_quic_tune_setting(char **args, int section_type, char *end_opt; memprintf(err, "'%s' is deprecated in 3.3 and will be removed in 3.5. " - "Please use the newer keyword syntax 'tune.quic.fe.stream.max-concurrent'.", args[0]); + "Please use the newer keyword syntax 'tune.quic.fe.cc.max-win-size'.", args[0]); cwnd = parse_window_size(args[0], args[1], &end_opt, err); if (!cwnd)