From 1f71ec85b06940f1b76bcc889026fb4898a465a9 Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Tue, 5 Nov 2024 18:51:04 +0100 Subject: [PATCH] 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. --- src/cfgparse-quic.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/cfgparse-quic.c b/src/cfgparse-quic.c index fe4e35682..a33c05e23 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 },