Skip to content
This repository was archived by the owner on Jun 27, 2018. It is now read-only.

Commit c9cbfdd

Browse files
authored
Merge pull request #13 from InterThread/disable-curl-ssl3
Disabled CURL SSLv3
2 parents 06b12f7 + 952f22c commit c9cbfdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/HTTPMessage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public function send()
132132
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
133133
curl_setopt($ch, CURLINFO_HEADER_OUT, true);
134134
curl_setopt($ch, CURLOPT_HEADER, true);
135-
curl_setopt($ch, CURLOPT_SSLVERSION,3);
135+
//curl_setopt($ch, CURLOPT_SSLVERSION,3);
136136
$chResp = curl_exec($ch);
137137
$this->ok = $chResp !== false;
138138
if ($this->ok) {

0 commit comments

Comments
 (0)