@@ -327,7 +327,10 @@ static int cfg_parse_quic_tune_setting0(char **args, int section_type,
327327 return -1 ;
328328
329329 suffix = args [0 ] + prefix_len ;
330- if (strcmp (suffix , "disable-udp-gso" ) == 0 ) {
330+ if (strcmp (suffix , "frontend.tx.disable-pacing" ) == 0 ) {
331+ global .tune .options |= GTUNE_QUIC_NO_PACING ;
332+ }
333+ else if (strcmp (suffix , "disable-udp-gso" ) == 0 ) {
331334 global .tune .options |= GTUNE_QUIC_NO_UDP_GSO ;
332335 }
333336 else {
@@ -386,6 +389,7 @@ static struct cfg_kw_list cfg_kws = {ILH, {
386389 { CFG_GLOBAL , "tune.quic.frontend.max-idle-timeout" , cfg_parse_quic_time },
387390 { CFG_GLOBAL , "tune.quic.frontend.max-tx-burst" , cfg_parse_quic_tune_setting },
388391 { CFG_GLOBAL , "tune.quic.frontend.max-window-size" , cfg_parse_quic_tune_setting },
392+ { CFG_GLOBAL , "tune.quic.frontend.tx.disable-pacing" , cfg_parse_quic_tune_setting0 },
389393 { CFG_GLOBAL , "tune.quic.max-frame-loss" , cfg_parse_quic_tune_setting },
390394 { CFG_GLOBAL , "tune.quic.reorder-ratio" , cfg_parse_quic_tune_setting },
391395 { CFG_GLOBAL , "tune.quic.retry-threshold" , cfg_parse_quic_tune_setting },
0 commit comments