From cf3cf7bdda9a2949660790c97100de2b085e0075 Mon Sep 17 00:00:00 2001 From: Amaury Denoyelle Date: Tue, 5 Aug 2025 10:40:09 +0200 Subject: [PATCH] MINOR: quic: remove unused conn-tx-buffers limit keyword Remove parsing code for tune.quic.frontend.conn-tx-buffers.limit. This option was deprecated for some time and in fact was noop and not mentionned anymore in the documentation. --- src/cfgparse-quic.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/cfgparse-quic.c b/src/cfgparse-quic.c index dd12cfe76..e2976caf2 100644 --- a/src/cfgparse-quic.c +++ b/src/cfgparse-quic.c @@ -299,11 +299,6 @@ static int cfg_parse_quic_tune_setting(char **args, int section_type, suffix = args[0] + prefix_len; if (strcmp(suffix, "cc.cubic.min-losses") == 0) global.tune.quic_cubic_loss_tol = arg - 1; - else if (strcmp(suffix, "frontend.conn-tx-buffers.limit") == 0) { - memprintf(err, "'%s' keyword is now obsolete and has no effect. " - "Use 'tune.quic.frontend.default-max-window-size' to limit Tx buffer allocation per connection.", args[0]); - return 1; - } else if (strcmp(suffix, "frontend.glitches-threshold") == 0) global.tune.quic_frontend_glitches_threshold = arg; else if (strcmp(suffix, "frontend.max-data-size") == 0) { @@ -437,7 +432,6 @@ static struct cfg_kw_list cfg_kws = {ILH, { { CFG_GLOBAL, "tune.quic.socket-owner", cfg_parse_quic_tune_socket_owner }, { 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 }, { CFG_GLOBAL, "tune.quic.frontend.glitches-threshold", cfg_parse_quic_tune_setting }, { CFG_GLOBAL, "tune.quic.frontend.max-data-size", cfg_parse_quic_tune_setting }, { CFG_GLOBAL, "tune.quic.frontend.max-streams-bidi", cfg_parse_quic_tune_setting },