From: Hugo Landau Date: Thu, 2 Mar 2023 16:04:34 +0000 (+0000) Subject: QUIC: Make QUIC_CHANNEL use newreno CC X-Git-Tag: openssl-3.2.0-alpha1~934 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6f45c55ea0f597387005c429beba80d76484389;p=thirdparty%2Fopenssl.git QUIC: Make QUIC_CHANNEL use newreno CC Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/20423) --- 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;