summaryrefslogtreecommitdiffstats
path: root/include
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 /include
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 'include')
-rw-r--r--include/openssl/ssl.h.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/ssl.h.in b/include/openssl/ssl.h.in
index 59b587e657..9f91039f8a 100644
--- a/include/openssl/ssl.h.in
+++ b/include/openssl/ssl.h.in
@@ -2348,7 +2348,7 @@ __owur int SSL_get_stream_write_error_code(SSL *ssl, uint64_t *app_error_code);
#define SSL_CONN_CLOSE_FLAG_TRANSPORT (1U << 1)
typedef struct ssl_conn_close_info_st {
- uint64_t error_code;
+ uint64_t error_code, frame_type;
const char *reason;
size_t reason_len;
uint32_t flags;