1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

On the trunk:

SSL protocl TLSv1.3 no longer part of 'all' when configured. Needs to be added explicitly.
When using 'modern' as SSL policy, TLSv1.3 is enabled.



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1839920 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Eissing
2018-09-03 09:06:35 +00:00
parent 9efafb1d06
commit fa321ddeba

View File

@@ -361,13 +361,11 @@ typedef int ssl_opt_t;
#ifdef SSL_OP_NO_TLSv1_3 #ifdef SSL_OP_NO_TLSv1_3
#define SSL_HAVE_PROTOCOL_TLSV1_3 (1) #define SSL_HAVE_PROTOCOL_TLSV1_3 (1)
#define SSL_PROTOCOL_ALL (SSL_PROTOCOL_BASIC| \
SSL_PROTOCOL_TLSV1_1|SSL_PROTOCOL_TLSV1_2|SSL_PROTOCOL_TLSV1_3)
#else #else
#define SSL_HAVE_PROTOCOL_TLSV1_3 (0) #define SSL_HAVE_PROTOCOL_TLSV1_3 (0)
#endif
#define SSL_PROTOCOL_ALL (SSL_PROTOCOL_BASIC| \ #define SSL_PROTOCOL_ALL (SSL_PROTOCOL_BASIC| \
SSL_PROTOCOL_TLSV1_1|SSL_PROTOCOL_TLSV1_2) SSL_PROTOCOL_TLSV1_1|SSL_PROTOCOL_TLSV1_2)
#endif
#else #else
#define SSL_PROTOCOL_ALL (SSL_PROTOCOL_BASIC) #define SSL_PROTOCOL_ALL (SSL_PROTOCOL_BASIC)
#endif #endif