diff options
author | Hugo Landau <hlandau@openssl.org> | 2023-05-23 16:37:34 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2023-06-16 01:26:48 +0200 |
commit | 29a541fe3643921462997856c46998f9b99f440f (patch) | |
tree | dbaca518a66e5e01e2cd00cece57a1ca956f4442 /ssl/quic/quic_channel.c | |
parent | QUIC: Test key update works correctly (diff) | |
download | openssl-29a541fe3643921462997856c46998f9b99f440f.tar.xz openssl-29a541fe3643921462997856c46998f9b99f440f.zip |
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)
Diffstat (limited to '')
-rw-r--r-- | ssl/quic/quic_channel.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ssl/quic/quic_channel.c b/ssl/quic/quic_channel.c index efc9fd7f4a..671fbeada9 100644 --- a/ssl/quic/quic_channel.c +++ b/ssl/quic/quic_channel.c @@ -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; } |