always set SSL_OP_NO_SSLv2 in TLS options

master
Jay Sorg 8 years ago
parent 47124df4ed
commit 8f747e37ca

@ -601,14 +601,11 @@ ssl_tls_accept(struct ssl_tls *self, int disableSSLv3,
* SSLv3 is used by, eg. Microsoft RDC for Mac OS X. * SSLv3 is used by, eg. Microsoft RDC for Mac OS X.
* No SSLv3 if disableSSLv3=yes so only tls used * No SSLv3 if disableSSLv3=yes so only tls used
*/ */
options |= SSL_OP_NO_SSLv2;
if (disableSSLv3) if (disableSSLv3)
{ {
options |= SSL_OP_NO_SSLv3; options |= SSL_OP_NO_SSLv3;
} }
else
{
options |= SSL_OP_NO_SSLv2;
}
#if defined(SSL_OP_NO_COMPRESSION) #if defined(SSL_OP_NO_COMPRESSION)
/** /**

Loading…
Cancel
Save