summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-10-24 08:15:18 +0100
committerMatt Caswell <matt@openssl.org>2023-10-25 09:42:03 +0100
commit55abe7486089ffa24b52e68a56b7eaed9a60a8ee (patch)
treec1842b3a2b4cce5052773fcef5bc813837efe300 /ssl
parent95420a2500fe0d96fb44cf7d826a156433c50589 (diff)
QUIC APL: Add support for querying frame type causing closure
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22485)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/quic/quic_impl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ssl/quic/quic_impl.c b/ssl/quic/quic_impl.c
index bdf5d5fea8..d3310f8728 100644
--- a/ssl/quic/quic_impl.c
+++ b/ssl/quic/quic_impl.c
@@ -3441,6 +3441,7 @@ int ossl_quic_get_conn_close_info(SSL *ssl,
return 0;
info->error_code = tc->error_code;
+ info->frame_type = tc->frame_type;
info->reason = tc->reason;
info->reason_len = tc->reason_len;
info->flags = 0;