summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-05-23 15:37:34 +0100
committerPauli <pauli@openssl.org>2023-06-16 09:26:48 +1000
commit29a541fe3643921462997856c46998f9b99f440f (patch)
treedbaca518a66e5e01e2cd00cece57a1ca956f4442 /ssl
parent693b23e3d07813985de510a00b1db58070439a51 (diff)
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 'ssl')
-rw-r--r--ssl/quic/quic_channel.c1
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;
}