Home
last modified time | relevance | path

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

/dokuwiki/inc/HTTP/
H A DHTTPClient.php392 $r_body = '';
414 if ($this->max_bodysize && $chunk_size + strlen($r_body) > $this->max_bodysize) {
418 $chunk_size = $this->max_bodysize - strlen($r_body);
423 $r_body .= $this->readData($socket, $chunk_size, 'chunk');
448 $r_body = $this->readData($socket, $length, 'response (content-length limited)', true);
450 $r_body = $this->readData($socket, $this->max_bodysize + 1, 'response (content-length limited)', true);
456 $r_body .= $this->readData($socket, 4096, 'response (unlimited)', true);
462 if (strlen($r_body) > $this->max_bodysize) {
492 strlen($r_body) > 10 && str_starts_with($r_body, "\x1
[all...]