]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
QUIC: Make QUIC_CHANNEL use newreno CC
authorHugo Landau <hlandau@openssl.org>
Thu, 2 Mar 2023 16:04:34 +0000 (16:04 +0000)
committerMatt Caswell <matt@openssl.org>
Mon, 1 May 2023 10:03:54 +0000 (11:03 +0100)
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20423)

ssl/quic/quic_channel.c

index 349e2f105524a675129241f2a6e0e0d488f30eee..95cf2b7d9ae4f49075521fac172317f1f2887e91 100644 (file)
@@ -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;