Lines Matching refs:proxy
38 var $proxy = null; // proxy information (associative array) variable in soap_transport_http
162 …thtype == 'ntlm') || ($this->scheme == 'http' && is_array($this->proxy) && $this->proxy['authtype'…
164 …heme == 'ssl') && $this->authtype != 'ntlm' && (!is_array($this->proxy) || $this->proxy['authtype'…
192 if (!is_array($this->proxy)) {
196 $host = $this->proxy['host'];
197 $port = $this->proxy['port'];
376 if (is_array($this->proxy)) {
378 if ($this->proxy['port'] != '') {
379 $this->setCurlOption(CURLOPT_PROXY, $this->proxy['host'].':'.$this->proxy['port']);
381 $this->setCurlOption(CURLOPT_PROXY, $this->proxy['host']);
383 if ($this->proxy['username'] || $this->proxy['password']) {
385 … $this->setCurlOption(CURLOPT_PROXYUSERPWD, $this->proxy['username'].':'.$this->proxy['password']);
386 if ($this->proxy['authtype'] == 'basic') {
389 if ($this->proxy['authtype'] == 'ntlm') {
578 $this->proxy = array(
590 $proxy = null;
697 if ($this->proxy) {