]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
QUIC CHANNEL: Inform the ACKM when the handshake is confirmed
authorHugo Landau <hlandau@openssl.org>
Tue, 23 May 2023 14:37:34 +0000 (15:37 +0100)
committerPauli <pauli@openssl.org>
Thu, 15 Jun 2023 23:26:48 +0000 (09:26 +1000)
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21029)

ssl/quic/quic_channel.c

index efc9fd7f4a0b7050d3a7ccd5abd31d5a829c8349..671fbeada96fda9e8caf210059f850a96df2ff12 100644 (file)
@@ -2309,6 +2309,7 @@ int ossl_quic_channel_on_handshake_confirmed(QUIC_CHANNEL *ch)
 
     ch_discard_el(ch, QUIC_ENC_LEVEL_HANDSHAKE);
     ch->handshake_confirmed = 1;
+    ossl_ackm_on_handshake_confirmed(ch->ackm);
     return 1;
 }