Lines Matching refs:max_bodysize
28 public $max_bodysize; variable in dokuwiki\\plugin\\upgrade\\HTTP\\HTTPClient
79 $this->max_bodysize = 0;
175 if($this->max_bodysize &&
325 … if($this->max_bodysize && preg_match('/\r?\nContent-Length:\s*(\d+)\r?\n/i',$r_headers,$match)){
326 if($match[1] > $this->max_bodysize){
420 if($this->max_bodysize && $chunk_size+strlen($r_body) > $this->max_bodysize){
424 $chunk_size = $this->max_bodysize - strlen($r_body);
443 $this->max_bodysize &&
444 $this->max_bodysize < $this->resp_headers['content-length']
446 $length = $this->max_bodysize + 1;
452 …}elseif( !isset($this->resp_headers['transfer-encoding']) && $this->max_bodysize && !$this->keep_a…
453 …$r_body = $this->readData($socket, $this->max_bodysize+1, 'response (content-length limited)', tru…
464 if($this->max_bodysize){
465 if(strlen($r_body) > $this->max_bodysize){