Lines Matching refs:incoming_headers
28 var $incoming_headers = array(); variable in soap_transport_http
843 $this->incoming_headers = array();
849 $this->incoming_headers[$header_name] = trim($arr[1]);
862 $this->incoming_headers[$header_name] .= $lb . ' ' . $header_line;
867 …if (isset($this->incoming_headers['transfer-encoding']) && strtolower($this->incoming_headers['tra…
871 } elseif (isset($this->incoming_headers['content-length'])) {
872 $content_length = $this->incoming_headers['content-length'];
934 …(isset($this->incoming_headers['connection']) && strtolower($this->incoming_headers['connection'])…
1027 $this->incoming_headers[$header_name] = trim($arr[1]);
1040 $this->incoming_headers[$header_name] .= $lb . ' ' . $header_line;
1052 if (isset($this->incoming_headers['location']) && ($http_status == 301 || $http_status == 302)) {
1053 …$this->debug("Got $http_status $http_reason with Location: " . $this->incoming_headers['location']…
1054 $this->setURL($this->incoming_headers['location']);
1060 if (isset($this->incoming_headers['www-authenticate']) && $http_status == 401) {
1061 …$this->debug("Got 401 $http_reason with WWW-Authenticate: " . $this->incoming_headers['www-authent…
1062 if (strstr($this->incoming_headers['www-authenticate'], "Digest ")) {
1065 $digestString = str_replace('Digest ', '', $this->incoming_headers['www-authenticate']);
1096 …if(isset($this->incoming_headers['content-encoding']) && $this->incoming_headers['content-encoding…
1097 …if(strtolower($this->incoming_headers['content-encoding']) == 'deflate' || strtolower($this->incom…
1105 if ($this->incoming_headers['content-encoding'] == 'deflate') {
1121 } elseif ($this->incoming_headers['content-encoding'] == 'gzip') {
1147 $this->debug('Unsupported Content-Encoding ' . $this->incoming_headers['content-encoding']);
1148 $this->setError('Unsupported Content-Encoding ' . $this->incoming_headers['content-encoding']);