Lines Matching refs:incoming_headers
2135 var $incoming_headers = array(); variable in soap_transport_http
2950 $this->incoming_headers = array();
2956 $this->incoming_headers[$header_name] = trim($arr[1]);
2969 $this->incoming_headers[$header_name] .= $lb . ' ' . $header_line;
2974 …if (isset($this->incoming_headers['transfer-encoding']) && strtolower($this->incoming_headers['tra…
2978 } elseif (isset($this->incoming_headers['content-length'])) {
2979 $content_length = $this->incoming_headers['content-length'];
3041 …(isset($this->incoming_headers['connection']) && strtolower($this->incoming_headers['connection'])…
3134 $this->incoming_headers[$header_name] = trim($arr[1]);
3147 $this->incoming_headers[$header_name] .= $lb . ' ' . $header_line;
3159 if (isset($this->incoming_headers['location']) && ($http_status == 301 || $http_status == 302)) {
3160 …$this->debug("Got $http_status $http_reason with Location: " . $this->incoming_headers['location']…
3161 $this->setURL($this->incoming_headers['location']);
3167 if (isset($this->incoming_headers['www-authenticate']) && $http_status == 401) {
3168 …$this->debug("Got 401 $http_reason with WWW-Authenticate: " . $this->incoming_headers['www-authent…
3169 if (strstr($this->incoming_headers['www-authenticate'], "Digest ")) {
3172 $digestString = str_replace('Digest ', '', $this->incoming_headers['www-authenticate']);
3203 …if(isset($this->incoming_headers['content-encoding']) && $this->incoming_headers['content-encoding…
3204 …if(strtolower($this->incoming_headers['content-encoding']) == 'deflate' || strtolower($this->incom…
3212 if ($this->incoming_headers['content-encoding'] == 'deflate') {
3228 } elseif ($this->incoming_headers['content-encoding'] == 'gzip') {
3254 $this->debug('Unsupported Content-Encoding ' . $this->incoming_headers['content-encoding']);
3255 $this->setError('Unsupported Content-Encoding ' . $this->incoming_headers['content-encoding']);
7532 …got response, length='. strlen($this->responseData).' type='.$http->incoming_headers['content-type…
7533 return $this->parseResponse($http->incoming_headers, $this->responseData);