@@ -273,6 +273,8 @@ static int cfg_parse_quic_tune_setting(char **args, int section_type,
273273 global .tune .quic_frontend_glitches_threshold = arg ;
274274 else if (strcmp (suffix , "frontend.max-streams-bidi" ) == 0 )
275275 global .tune .quic_frontend_max_streams_bidi = arg ;
276+ else if (strcmp (suffix , "frontend.max-tx-burst" ) == 0 )
277+ global .tune .quic_frontend_max_tx_burst = arg ;
276278 else if (strcmp (suffix , "frontend.max-window-size" ) == 0 ) {
277279 unsigned long cwnd ;
278280 char * end_opt ;
@@ -377,6 +379,7 @@ static struct cfg_kw_list cfg_kws = {ILH, {
377379 { CFG_GLOBAL , "tune.quic.frontend.glitches-threshold" , cfg_parse_quic_tune_setting },
378380 { CFG_GLOBAL , "tune.quic.frontend.max-streams-bidi" , cfg_parse_quic_tune_setting },
379381 { CFG_GLOBAL , "tune.quic.frontend.max-idle-timeout" , cfg_parse_quic_time },
382+ { CFG_GLOBAL , "tune.quic.frontend.max-tx-burst" , cfg_parse_quic_tune_setting },
380383 { CFG_GLOBAL , "tune.quic.frontend.max-window-size" , cfg_parse_quic_tune_setting },
381384 { CFG_GLOBAL , "tune.quic.max-frame-loss" , cfg_parse_quic_tune_setting },
382385 { CFG_GLOBAL , "tune.quic.reorder-ratio" , cfg_parse_quic_tune_setting },
0 commit comments