Home
last modified time | relevance | path

Searched refs:max_bodysize (Results 1 – 4 of 4) sorted by path

/dokuwiki/inc/HTTP/
H A DHTTPClient.php29 public $max_bodysize = 0;
30 public $max_bodysize_abort = true; // if set, abort if the response body is bigger than max_bodysize
171 $this->max_bodysize &&
320 if ($this->max_bodysize && preg_match('/\r?\nContent-Length:\s*(\d+)\r?\n/i', $r_headers, $match)) {
321 if ($match[1] > $this->max_bodysize) {
414 if ($this->max_bodysize && $chunk_size + strlen($r_body) > $this->max_bodysize) {
418 $chunk_size = $this->max_bodysize - strlen($r_body);
436 // read up to the content-length or max_bodysize
440 $this->max_bodysize
28 public $max_bodysize; global() variable in dokuwiki\\HTTP\\HTTPClient
[all...]
/dokuwiki/inc/
H A Dio.php657 $http->max_bodysize = $maxSize;
H A Dmedia.php1929 $http->max_bodysize = $conf['fetchsize'];
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php922 $http->max_bodysize = 0;