You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by rj...@apache.org on 2015/05/27 13:25:15 UTC

svn commit: r1681979 - /tomcat/native/trunk/native/include/ssl_private.h

Author: rjung
Date: Wed May 27 11:25:15 2015
New Revision: 1681979

URL: http://svn.apache.org/r1681979
Log:
Remove SSL_PROTOCOL_ALL.

In mod_ssl it does set the default values,
in tcnative values always come from the caller.

Also SSL_PROTOCOL_ALL is not the same as
SSL.SSL_PROTOCOL_ALL on the Java side and that
could be misleading.

Modified:
    tomcat/native/trunk/native/include/ssl_private.h

Modified: tomcat/native/trunk/native/include/ssl_private.h
URL: http://svn.apache.org/viewvc/tomcat/native/trunk/native/include/ssl_private.h?rev=1681979&r1=1681978&r2=1681979&view=diff
==============================================================================
--- tomcat/native/trunk/native/include/ssl_private.h (original)
+++ tomcat/native/trunk/native/include/ssl_private.h Wed May 27 11:25:15 2015
@@ -84,7 +84,6 @@
 #define SSL_PROTOCOL_TLSV1      (1<<2)
 #define SSL_PROTOCOL_TLSV1_1    (1<<3)
 #define SSL_PROTOCOL_TLSV1_2    (1<<4)
-#define SSL_PROTOCOL_ALL        (SSL_PROTOCOL_SSLV2|SSL_PROTOCOL_SSLV3|SSL_PROTOCOL_TLSV1|SSL_PROTOCOL_TLSV1_1|SSL_PROTOCOL_TLSV1_2)
 
 #define SSL_MODE_CLIENT         (0)
 #define SSL_MODE_SERVER         (1)



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org