]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
QUIC: Make TLS1_FLAGS_QUIC private
authorHugo Landau <hlandau@openssl.org>
Wed, 30 Aug 2023 12:43:35 +0000 (13:43 +0100)
committerHugo Landau <hlandau@openssl.org>
Fri, 1 Sep 2023 13:02:50 +0000 (14:02 +0100)
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21905)

include/internal/ssl.h
include/openssl/ssl3.h

index 46146a9e7ebf86b96d15bf57dbf1c91aa661309c..8a0c797496724bfb8d577e0f828e7a43a40b7ef2 100644 (file)
@@ -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
index 2747a9d65bea32467af521ef17b6467b1374a17c..3007a31d52a57317bde982080a847223660674c9 100644 (file)
@@ -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