4
0
mirror of https://github.com/QuasarApp/qca.git synced 2025-05-10 09:49:33 +00:00

qca-ossl: Fix build without SSLv3

This fixes building with LibreSSL >= 2.3.0 which has removed support
for SSLv3 completely. As far as I know OpenSSL can be configured to
build without it, so it might be helpful there as well.

REVIEW: 125386
This commit is contained in:
Heiko Becker 2015-09-24 22:54:41 +02:00
parent db17d5969b
commit 20a587d776

@ -5403,9 +5403,11 @@ public:
ctx = SSL_CTX_new(SSLv2_client_method());
break;
#endif
#ifndef OPENSSL_NO_SSL3_METHOD
case TLS::SSL_v3:
ctx = SSL_CTX_new(SSLv3_client_method());
break;
#endif
case TLS::TLS_v1:
ctx = SSL_CTX_new(TLSv1_client_method());
break;