mirror of
https://repo.or.cz/socat.git
synced 2025-07-10 14:12:58 +00:00
Check in configure for SSLv3_*_METHOD
This commit is contained in:
parent
de80846643
commit
0061ca1334
6 changed files with 96 additions and 2 deletions
4
sslcls.c
4
sslcls.c
|
@ -55,6 +55,7 @@ const SSL_METHOD *sycSSLv2_server_method(void) {
|
|||
}
|
||||
#endif
|
||||
|
||||
#if HAVE_SSLv3_client_method
|
||||
const SSL_METHOD *sycSSLv3_client_method(void) {
|
||||
const SSL_METHOD *result;
|
||||
Debug("SSLv3_client_method()");
|
||||
|
@ -62,7 +63,9 @@ const SSL_METHOD *sycSSLv3_client_method(void) {
|
|||
Debug1("SSLv3_client_method() -> %p", result);
|
||||
return result;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if HAVE_SSLv3_server_method
|
||||
const SSL_METHOD *sycSSLv3_server_method(void) {
|
||||
const SSL_METHOD *result;
|
||||
Debug("SSLv3_server_method()");
|
||||
|
@ -70,6 +73,7 @@ const SSL_METHOD *sycSSLv3_server_method(void) {
|
|||
Debug1("SSLv3_server_method() -> %p", result);
|
||||
return result;
|
||||
}
|
||||
#endif
|
||||
|
||||
const SSL_METHOD *sycSSLv23_client_method(void) {
|
||||
const SSL_METHOD *result;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue