Lines Matching refs:resp_headers
53 var $resp_headers; variable in dokuwiki\\plugin\\elwikiupgrade\\HTTPClient
180 $this->resp_headers = array();
349 $this->resp_headers = $this->_parseHeaders($r_headers);
350 if(isset($this->resp_headers['set-cookie'])){
351 foreach ((array) $this->resp_headers['set-cookie'] as $cookie){
365 $this->_debug('Object headers',$this->resp_headers);
369 if (empty($this->resp_headers['location'])){
382 if (!preg_match('/^http/i', $this->resp_headers['location'])){
383 if($this->resp_headers['location'][0] != '/'){
384 … $this->resp_headers['location'] = $uri['scheme'].'://'.$uri['host'].':'.$uri['port'].
385 … dirname($uri['path']).'/'.$this->resp_headers['location'];
387 … $this->resp_headers['location'] = $uri['scheme'].'://'.$uri['host'].':'.$uri['port'].
388 $this->resp_headers['location'];
392 return $this->sendRequest($this->resp_headers['location'],array(),'GET');
402 …if((isset($this->resp_headers['transfer-encoding']) && $this->resp_headers['transfer-encoding'] ==…
403 …|| (isset($this->resp_headers['transfer-coding']) && $this->resp_headers['transfer-coding'] == 'ch…
429 …}elseif(isset($this->resp_headers['content-length']) && !isset($this->resp_headers['transfer-encod…
437 …is->keep_alive && $this->max_bodysize && $this->max_bodysize < $this->resp_headers['content-length…
440 $length = $this->resp_headers['content-length'];
444 …}elseif( !isset($this->resp_headers['transfer-encoding']) && $this->max_bodysize && !$this->keep_a…
476 … (isset($this->resp_headers['connection']) && $this->resp_headers['connection'] == 'Close')) {
483 if(isset($this->resp_headers['content-encoding']) &&
484 $this->resp_headers['content-encoding'] == 'gzip' &&