Skip to content

Commit 9e2dbdf

Browse files
authored
assign curl options
1 parent a0c9b7f commit 9e2dbdf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/BigBlueButton.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,9 @@ private function processXmlResponse($url, $payload = '', $contentType = 'applica
429429
$cookiefile = tmpfile();
430430
$cookiefilepath = stream_get_meta_data($cookiefile)['uri'];
431431

432+
foreach ($this->curlopts as $opt => $value){
433+
curl_setopt($ch, $opt, $value);
434+
}
432435
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
433436
curl_setopt($ch, CURLOPT_ENCODING, 'UTF-8');
434437
curl_setopt($ch, CURLOPT_URL, $url);

0 commit comments

Comments
 (0)