1
0
Fork 0
mirror of https://repo.or.cz/socat.git synced 2025-07-08 05:36:32 +00:00

Disable option openssl-method

This commit is contained in:
Gerhard Rieger 2019-02-10 13:16:42 +01:00
parent 181228cf53
commit 14f3e4fed8
8 changed files with 56 additions and 12 deletions

View file

@ -91,6 +91,7 @@ const SSL_METHOD *sycSSLv23_server_method(void) {
return result;
}
#if HAVE_TLSv1_client_method
const SSL_METHOD *sycTLSv1_client_method(void) {
const SSL_METHOD *result;
Debug("TLSv1_client_method()");
@ -98,7 +99,9 @@ const SSL_METHOD *sycTLSv1_client_method(void) {
Debug1("TLSv1_client_method() -> %p", result);
return result;
}
#endif
#if HAVE_TLSv1_server_method
const SSL_METHOD *sycTLSv1_server_method(void) {
const SSL_METHOD *result;
Debug("TLSv1_server_method()");
@ -106,6 +109,7 @@ const SSL_METHOD *sycTLSv1_server_method(void) {
Debug1("TLSv1_server_method() -> %p", result);
return result;
}
#endif
#if HAVE_TLSv1_1_client_method
const SSL_METHOD *sycTLSv1_1_client_method(void) {