Home
last modified time | relevance | path

Searched refs:max_bodysize (Results 1 – 12 of 12) sorted by relevance

/plugin/upgrade/HTTP/
H A DHTTPClient.php28 public $max_bodysize; variable in dokuwiki\\plugin\\upgrade\\HTTP\\HTTPClient
29 public $max_bodysize_abort = true; // if set, abort if the response body is bigger than max_bodysize
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);
439 // read up to the content-length or max_bodysize
[all...]
/plugin/elwikiupgrade/
H A DHTTPClient.php38 var $max_bodysize; variable in dokuwiki\\plugin\\elwikiupgrade\\HTTPClient
89 $this->max_bodysize = 0;
183 if($this->max_bodysize &&
333 … if($this->max_bodysize && preg_match('/\r?\nContent-Length:\s*(\d+)\r?\n/i',$r_headers,$match)){
334 if($match[1] > $this->max_bodysize){
416 if($this->max_bodysize && $chunk_size+strlen($r_body) > $this->max_bodysize){
420 $chunk_size = $this->max_bodysize - strlen($r_body);
437 …if(!$this->keep_alive && $this->max_bodysize && $this->max_bodysize < $this->resp_headers['content…
438 $length = $this->max_bodysize;
456 if($this->max_bodysize){
[all …]
/plugin/linkback/
H A Dhttp.php5 * the retrieved body is limited to the value set in max_bodysize.
150 if ($this->max_bodysize && preg_match('/\r\nContent-Length:\s*(\d+)\r\n/i', $r_headers, $match)) {
151 if ($match[1] > $this->max_bodysize) {
231 if ($this->max_bodysize && strlen($r_body) > $this->max_bodysize) {
250 if ($this->max_bodysize && strlen($r_body) > $this->max_bodysize) {
H A Dtools.php48 $http_client->max_bodysize = $range;
/plugin/quickstats/GEOIP/
H A Dget_geocity2.php27 $http->max_bodysize = 32777216;
/plugin/quickstats/scripts/
H A Dget_geocity.php21 $http->max_bodysize = 32777216;
H A Dget_geocity2.php56 $http->max_bodysize = 36777216;
/plugin/linkback/action/
H A Dsend.php218 $http_client->max_bodysize = $range;
/plugin/eclipseupdateurl/
H A Dsyntax.php321 $http->max_bodysize = $conf['fetchsize'];
/plugin/multiorphan/action/
H A Dmultiorphan.php358 $httpClient->max_bodysize = 0;
/plugin/xtern/
H A Dadmin.php341 $http->max_bodysize = 32777216;
/plugin/siteexport/action/
H A Dajax.php577 $http->max_bodysize = $conf['fetchsize'];