diff options
author | François Michel <francois.michel@uclouvain.be> | 2023-05-03 12:13:40 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2023-05-03 13:59:17 +0200 |
commit | 89f6fafedbb57b62fddf58223cfa92307bf51a68 (patch) | |
tree | c308f9b211f55f670c6fec49a4dcd8d68b09aa0d | |
parent | d8df0d6db7441b6e14920a7e16a10e32bdc9c7ae (diff) | |
download | curl-89f6fafedbb57b62fddf58223cfa92307bf51a68.tar.gz |
quiche: disable pacing while pacing is not actually performed
Closes #11068
-rw-r--r-- | lib/vquic/curl_quiche.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/vquic/curl_quiche.c b/lib/vquic/curl_quiche.c index ff3f8f4ec..392b9beb8 100644 --- a/lib/vquic/curl_quiche.c +++ b/lib/vquic/curl_quiche.c @@ -1258,6 +1258,7 @@ static CURLcode cf_connect_start(struct Curl_cfilter *cf, failf(data, "can't create quiche config"); return CURLE_FAILED_INIT; } + quiche_config_enable_pacing(ctx->cfg, false); quiche_config_set_max_idle_timeout(ctx->cfg, QUIC_IDLE_TIMEOUT); quiche_config_set_initial_max_data(ctx->cfg, (1 * 1024 * 1024) /* (QUIC_MAX_STREAMS/2) * H3_STREAM_WINDOW_SIZE */); |