summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-08-30 13:43:35 +0100
committerHugo Landau <hlandau@openssl.org>2023-09-01 14:02:50 +0100
commitd492e34351ae49e899a7c66f1882703a4fedced2 (patch)
tree5a8958bbd9ea526606ccce6c888e6090e89198dd /include
parent7d9e447ab812df34bba581c5918721cc704fdacb (diff)
QUIC: Make TLS1_FLAGS_QUIC private
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21905)
Diffstat (limited to 'include')
-rw-r--r--include/internal/ssl.h3
-rw-r--r--include/openssl/ssl3.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/include/internal/ssl.h b/include/internal/ssl.h
index 46146a9e7e..8a0c797496 100644
--- a/include/internal/ssl.h
+++ b/include/internal/ssl.h
@@ -18,4 +18,7 @@ typedef void (*ossl_msg_cb)(int write_p, int version, int content_type,
int ossl_ssl_get_error(const SSL *s, int i, int check_err);
+/* Set if this is the QUIC handshake layer */
+# define TLS1_FLAGS_QUIC 0x2000
+
#endif
diff --git a/include/openssl/ssl3.h b/include/openssl/ssl3.h
index 2747a9d65b..3007a31d52 100644
--- a/include/openssl/ssl3.h
+++ b/include/openssl/ssl3.h
@@ -307,9 +307,6 @@ extern "C" {
/* Set if extended master secret extension required on renegotiation */
# define TLS1_FLAGS_REQUIRED_EXTMS 0x1000
-/* Set if this is the QUIC handshake layer */
-# define TLS1_FLAGS_QUIC 0x2000
-
# define SSL3_MT_HELLO_REQUEST 0
# define SSL3_MT_CLIENT_HELLO 1
# define SSL3_MT_SERVER_HELLO 2