Replaced SSLv23 method by TLSv1 method

This commit is contained in:
2014-11-25 15:19:01 +01:00
parent 9640fd9985
commit ed4d4f9eae
+1 -1
View File
@@ -292,7 +292,7 @@ int ssl_connect(int sock, SSL ** ssl_con)
SSL_library_init();
SSL_load_error_strings();
meth = (SSL_METHOD *) SSLv23_method();
meth = (SSL_METHOD *) TLSv1_method();
ctx = SSL_CTX_new(meth);
*ssl_con = SSL_new(ctx);