From: Christopher Faulet Date: Tue, 5 Nov 2024 17:51:04 +0000 (+0100) Subject: CLEANUP: quic: Remove the useless directive "tune.quic.backend.max-idle-timeou" X-Git-Tag: v3.1-dev12~37 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1f71ec85b06940f1b76bcc889026fb4898a465a9;p=thirdparty%2Fhaproxy.git CLEANUP: quic: Remove the useless directive "tune.quic.backend.max-idle-timeou" First there is a typo in the directive name, then it is not documented and finally, it is not used at all. The directive is only removed from the keyword list. Parsing function is not updated. This patch should fix the issue #2601. --- diff --git a/src/cfgparse-quic.c b/src/cfgparse-quic.c index fe4e356825..a33c05e239 100644 --- a/src/cfgparse-quic.c +++ b/src/cfgparse-quic.c @@ -370,7 +370,6 @@ static int cfg_parse_quic_tune_on_off(char **args, int section_type, struct prox static struct cfg_kw_list cfg_kws = {ILH, { { CFG_GLOBAL, "tune.quic.socket-owner", cfg_parse_quic_tune_socket_owner }, - { CFG_GLOBAL, "tune.quic.backend.max-idle-timeou", cfg_parse_quic_time }, { CFG_GLOBAL, "tune.quic.cc-hystart", cfg_parse_quic_tune_on_off }, { CFG_GLOBAL, "tune.quic.cc.cubic.min-losses", cfg_parse_quic_tune_setting }, { CFG_GLOBAL, "tune.quic.frontend.conn-tx-buffers.limit", cfg_parse_quic_tune_setting },