You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by sc...@apache.org on 2012/12/21 16:13:27 UTC

svn commit: r1424947 - /tomcat/native/trunk/native/src/ssl.c

Author: schultz
Date: Fri Dec 21 15:13:27 2012
New Revision: 1424947

URL: http://svn.apache.org/viewvc?rev=1424947&view=rev
Log:
Partial fix for https://issues.apache.org/bugzilla/show_bug.cgi?id=54324

Add SSL_OP_NO_COMPRESSION to the set of OpenSSL options recognized by ssl.c::hasOp.

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=1424947&r1=1424946&r2=1424947&view=diff
==============================================================================
--- tomcat/native/trunk/native/src/ssl.c (original)
+++ tomcat/native/trunk/native/src/ssl.c Fri Dec 21 15:13:27 2012
@@ -150,6 +150,10 @@ static const jint supported_ssl_opts = 0
      | SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG
 #endif
 
+#ifdef SSL_OP_NO_COMPRESSION
+     | SSL_OP_NO_COMPRESSION
+#endif
+
 #ifdef SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
      | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
 #endif



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