We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8388974 commit 84f2299Copy full SHA for 84f2299
mlogc/mlogc.c
@@ -1218,8 +1218,8 @@ static void logc_init(void)
1218
curl_easy_setopt(curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
1219
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, FALSE);
1220
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0);
1221
- /* SSLv3 works better overall as some servers have issues with TLS */
1222
- curl_easy_setopt(curl, CURLOPT_SSLVERSION, CURL_SSLVERSION_SSLv3);
+ curl_easy_setopt(curl, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_2);
+
1223
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 15);
1224
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, TRUE);
1225
curl_easy_setopt(curl, CURLOPT_HEADER, TRUE);
0 commit comments