QUIC CHANNEL: Inform the ACKM when the handshake is confirmed

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)
This commit is contained in:
Hugo Landau 2023-05-23 15:37:34 +01:00 committed by Pauli
parent 693b23e3d0
commit 29a541fe36

View 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;
}