do not force sslversion in any cases

This commit is contained in:
Andrew Dolgov 2014-10-16 09:01:23 +04:00
parent 3a008ecc76
commit 229a871be7
2 changed files with 0 additions and 8 deletions

View File

@ -403,10 +403,6 @@
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_query);
}
if ((OPENSSL_VERSION_NUMBER >= 0x0090808f) && (OPENSSL_VERSION_NUMBER < 0x10000000)) {
curl_setopt($ch, CURLOPT_SSLVERSION, 3);
}
if ($login && $pass)
curl_setopt($ch, CURLOPT_USERPWD, "$login:$pass");

View File

@ -2243,10 +2243,6 @@
curl_setopt($curl, CURLOPT_PROXY, _CURL_HTTP_PROXY);
}
if ((OPENSSL_VERSION_NUMBER >= 0x0090808f) && (OPENSSL_VERSION_NUMBER < 0x10000000)) {
curl_setopt($curl, CURLOPT_SSLVERSION, 3);
}
$html = curl_exec($curl);
$status = curl_getinfo($curl);