Fix building against openssl 0.9.8

Closes #1221
This commit is contained in:
TingPing 2014-11-26 08:15:34 -05:00
parent 232096801b
commit c92b247878
1 changed files with 7 additions and 1 deletions

View File

@ -90,11 +90,17 @@ _SSL_context_init (void (*info_cb_func), int server)
SSL_CTX_set_session_cache_mode (ctx, SSL_SESS_CACHE_BOTH);
SSL_CTX_set_timeout (ctx, 300);
SSL_CTX_set_options (ctx, SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3
#ifdef SSL_OP_NO_COMPRESSION
|SSL_OP_NO_COMPRESSION
#endif
|SSL_OP_SINGLE_DH_USE|SSL_OP_SINGLE_ECDH_USE
|SSL_OP_NO_TICKET
|SSL_OP_CIPHER_SERVER_PREFERENCE);
#if OPENSSL_VERSION_NUMBER >= 0x00908000L /* workaround for OpenSSL 0.9.8 */
sk_SSL_COMP_zero(SSL_COMP_get_compression_methods());
#endif
/* used in SSL_connect(), SSL_accept() */
SSL_CTX_set_info_callback (ctx, info_cb_func);
@ -541,4 +547,4 @@ _SSL_check_hostname (X509 *cert, const char *host)
return rv;
return _SSL_check_common_name (cert, host);
}
}