Author: schultz
Date: Fri Dec 21 15:26:51 2012
New Revision: 1424971
URL: http://svn.apache.org/viewvc?rev=1424971&view=rev
Log:
Added missing relevant SSL_OP_ constants from OpenSSL 1.0.
Modified:
tomcat/native/trunk/native/src/ssl.c
Modified: tomcat/native/trunk/native/src/ssl.c
URL:
http://svn.apache.org/viewvc/tomcat/native/trunk/native/src/ssl.c?rev=1424971&r1=1424970&r2=1424971&view=diff
==============================================================================
--- tomcat/native/trunk/native/src/ssl.c (original)
+++ tomcat/native/trunk/native/src/ssl.c Fri Dec 21 15:26:51 2012
@@ -110,6 +110,10 @@ static const jint supported_ssl_opts = 0
| SSL_OP_CIPHER_SERVER_PREFERENCE
#endif
+#ifdef SSL_OP_CRYPTOPRO_TLSEXT_BUG
+ | SSL_OP_CRYPTOPRO_TLSEXT_BUG
+#endif
+
#ifdef SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS
| SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS
#endif
@@ -154,6 +158,10 @@ static const jint supported_ssl_opts = 0
| SSL_OP_NO_COMPRESSION
#endif
+#ifdef SSL_OP_NO_QUERY_MTU
+ | SSL_OP_NO_QUERY_MTU
+#endif
+
#ifdef SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
| SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
#endif
@@ -186,6 +194,10 @@ static const jint supported_ssl_opts = 0
| SSL_OP_SINGLE_DH_USE
#endif
+#ifdef SSL_OP_SINGLE_ECDH_USE
+ | SSL_OP_SINGLE_ECDH_USE
+#endif
+
#ifdef SSL_OP_SSLEAY_080_CLIENT_DH_BUG
| SSL_OP_SSLEAY_080_CLIENT_DH_BUG
#endif
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]