Lines Matching refs:incoming_headers

2019 	var $incoming_headers = array();  variable in soap_transport_http
2594 $this->incoming_headers = array();
2600 $this->incoming_headers[$header_name] = trim($arr[1]);
2613 $this->incoming_headers[$header_name] .= $lb . ' ' . $header_line;
2618 …if (isset($this->incoming_headers['transfer-encoding']) && strtolower($this->incoming_headers['tra…
2622 } elseif (isset($this->incoming_headers['content-length'])) {
2623 $content_length = $this->incoming_headers['content-length'];
2685 …(isset($this->incoming_headers['connection']) && strtolower($this->incoming_headers['connection'])…
2764 $this->incoming_headers[$header_name] = trim($arr[1]);
2777 $this->incoming_headers[$header_name] .= $lb . ' ' . $header_line;
2788 if (isset($this->incoming_headers['location']) && $http_status == 301) {
2789 $this->debug("Got 301 $http_reason with Location: " . $this->incoming_headers['location']);
2790 $this->setURL($this->incoming_headers['location']);
2796 if (isset($this->incoming_headers['www-authenticate']) && $http_status == 401) {
2797 …$this->debug("Got 401 $http_reason with WWW-Authenticate: " . $this->incoming_headers['www-authent…
2798 if (strstr($this->incoming_headers['www-authenticate'], "Digest ")) {
2801 $digestString = str_replace('Digest ', '', $this->incoming_headers['www-authenticate']);
2832 …if(isset($this->incoming_headers['content-encoding']) && $this->incoming_headers['content-encoding…
2833 …if(strtolower($this->incoming_headers['content-encoding']) == 'deflate' || strtolower($this->incom…
2841 if ($this->incoming_headers['content-encoding'] == 'deflate') {
2857 } elseif ($this->incoming_headers['content-encoding'] == 'gzip') {
2883 $this->debug('Unsupported Content-Encoding ' . $this->incoming_headers['content-encoding']);
2884 $this->setError('Unsupported Content-Encoding ' . $this->incoming_headers['content-encoding']);
6799 …got response, length='. strlen($this->responseData).' type='.$http->incoming_headers['content-type…
6800 return $this->parseResponse($http->incoming_headers, $this->responseData);