Searched refs:readData (Results 1 – 1 of 1) sorted by relevance
/dokuwiki/inc/HTTP/ |
D | HTTPClient.php | 405 … while (preg_match('/^[a-zA-Z0-9]?$/', $byte = $this->readData($socket, 1, 'chunk'))) { 423 $r_body .= $this->readData($socket, $chunk_size, 'chunk'); 424 $this->readData($socket, 2, 'chunk'); // read trailing \r\n 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)', t… 456 $r_body .= $this->readData($socket, 4096, 'response (unlimited)', true); 629 protected function readData($socket, $nbytes, $message, $ignore_eof = false) function in dokuwiki\\HTTP\\HTTPClient
|