Disabled CURL SSLv3

SSLv3 is not secure and rejected by some Tool Consumers. The PHP CURL
manual recommends not setting this option.
This commit is contained in:
Rob Walker 2016-11-11 15:18:25 -05:00
parent 06b12f70c2
commit 952f22c0ed
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ class HTTPMessage
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLINFO_HEADER_OUT, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_SSLVERSION,3);
//curl_setopt($ch, CURLOPT_SSLVERSION,3);
$chResp = curl_exec($ch);
$this->ok = $chResp !== false;
if ($this->ok) {