On Fri, Oct 24, 2014 at 9:30 AM, Michael Wojcik <[email protected]> wrote: > You have "SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv2" there. I assume "v2 ... v2" is > a typo, but if that's what your code actually has, then that's the problem. > (Assuming there isn't some other problem, of course.) > That's actually correct in this case.
$ cat ssl/ssl.h | grep SSL_OP_NO_ #define SSL_OP_NO_QUERY_MTU 0x00001000L #define SSL_OP_NO_TICKET 0x00004000L #define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0x00010000L #define SSL_OP_NO_COMPRESSION 0x00020000L #define SSL_OP_NO_SSLv2 0x01000000L #define SSL_OP_NO_SSLv3 0x02000000L #define SSL_OP_NO_TLSv1 0x04000000L #define SSL_OP_NO_TLSv1_2 0x08000000L #define SSL_OP_NO_TLSv1_1 0x10000000L ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List [email protected] Automated List Manager [email protected]
