search for: tls_client_method

Displaying 1 result from an estimated 1 matches for "tls_client_method".

Did you mean: tlsv1_client_method
2017 Nov 16
0
[PATCH] [libshout] tls: compile with OpenSSL 1.1.0
...cause it enables only the TLSv1.0 protocol. Better is to use SSLv23_client_method() which enable all the protocols including TLSv1.2. With this functions SSLv2 and SSLv3 is theoretically possible but as of today those protocols are usually build-time disabled. To avoid all this OpenSSL 1.1 provides TLS_client_method() which is aim to provide to highest TLS protocol version (same as SSLv23_client_method() but it is deprecated in 1.1). Signed-off-by: Sebastian Andrzej Siewior <sebastian at breakpoint.cc> --- src/tls.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/tls.c...