Merge pull request #9413 from johnstevenson/false-start
Remove CURLOPT_SSL_FALSESTART option. Fixes #9405pull/9416/head
commit
59de196ab7
|
@ -166,9 +166,6 @@ class CurlDownloader
|
|||
curl_setopt($curlHandle, CURLOPT_FILE, $bodyHandle);
|
||||
curl_setopt($curlHandle, CURLOPT_ENCODING, "gzip");
|
||||
curl_setopt($curlHandle, CURLOPT_PROTOCOLS, CURLPROTO_HTTP|CURLPROTO_HTTPS);
|
||||
if (defined('CURLOPT_SSL_FALSESTART')) {
|
||||
curl_setopt($curlHandle, CURLOPT_SSL_FALSESTART, true);
|
||||
}
|
||||
if (function_exists('curl_share_init')) {
|
||||
curl_setopt($curlHandle, CURLOPT_SHARE, $this->shareHandle);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue