File mlogc-disable-force-sslv3.patch of Package mod_security (Revision 96906d3f756153750bf50d1763ba5d64)
Currently displaying revision 96906d3f756153750bf50d1763ba5d64, show latest
x
1
--- mlogc/mlogc.c.orig 2012-03-05 17:20:00.254555490 +0100
2
+++ mlogc/mlogc.c 2012-03-05 17:20:10.430753985 +0100
3
4
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, FALSE);
5
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0);
6
/* SSLv3 works better overall as some servers have issues with TLS */
7
- curl_easy_setopt(curl, CURLOPT_SSLVERSION, CURL_SSLVERSION_SSLv3);
8
+ /* curl_easy_setopt(curl, CURLOPT_SSLVERSION, CURL_SSLVERSION_SSLv3); */
9
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 15);
10
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, TRUE);
11
curl_easy_setopt(curl, CURLOPT_HEADER, TRUE);
12