From f6f45c55ea0f597387005c429beba80d76484389 Mon Sep 17 00:00:00 2001 From: Hugo Landau Date: Thu, 2 Mar 2023 16:04:34 +0000 Subject: [PATCH] QUIC: Make QUIC_CHANNEL use newreno CC Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/20423) --- ssl/quic/quic_channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/quic/quic_channel.c b/ssl/quic/quic_channel.c index 349e2f10552..95cf2b7d9ae 100644 --- a/ssl/quic/quic_channel.c +++ b/ssl/quic/quic_channel.c @@ -149,7 +149,7 @@ static int ch_init(QUIC_CHANNEL *ch) goto err; ch->have_statm = 1; - ch->cc_method = &ossl_cc_dummy_method; + ch->cc_method = &ossl_cc_newreno_method; if ((ch->cc_data = ch->cc_method->new(get_time, NULL)) == NULL) goto err; -- 2.47.2