Lines Matching refs:resp_headers

43     public $resp_headers;
169 $this->resp_headers = array();
341 $this->resp_headers = $this->parseHeaders($r_headers);
342 if(isset($this->resp_headers['set-cookie'])){
343 foreach ((array) $this->resp_headers['set-cookie'] as $cookie){
357 $this->debug('Object headers',$this->resp_headers);
361 if (empty($this->resp_headers['location'])){
374 if (!preg_match('/^http/i', $this->resp_headers['location'])){
375 if($this->resp_headers['location'][0] != '/'){
376 $this->resp_headers['location'] = $uri['scheme'].'://'.$uri['host'].':'.$uriPort.
377 dirname($path).'/'.$this->resp_headers['location'];
379 $this->resp_headers['location'] = $uri['scheme'].'://'.$uri['host'].':'.$uriPort.
380 $this->resp_headers['location'];
385 return $this->sendRequest($this->resp_headers['location'],$unencodedData,$method);
388 return $this->sendRequest($this->resp_headers['location'],array(),'GET');
401 isset($this->resp_headers['transfer-encoding']) &&
402 $this->resp_headers['transfer-encoding'] == 'chunked'
404 isset($this->resp_headers['transfer-coding']) &&
405 $this->resp_headers['transfer-coding'] == 'chunked'
433 }elseif(isset($this->resp_headers['content-length']) && !isset($this->resp_headers['transfer-encoding'])){
444 $this->max_bodysize < $this->resp_headers['content-length']
448 $length = $this->resp_headers['content-length'];
452 }elseif( !isset($this->resp_headers['transfer-encoding']) && $this->max_bodysize && !$this->keep_alive){
484 (isset($this->resp_headers['connection']) && $this->resp_headers['connection'] == 'Close')) {
491 if(isset($this->resp_headers['content-encoding']) &&
492 $this->resp_headers['content-encoding'] == 'gzip' &&