Home
last modified time | relevance | path

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

/dokuwiki/inc/HTTP/
H A DHTTPClient.php311 $r_headers = '';
314 $r_headers .= $r_line;
317 $this->debug('response headers', $r_headers);
320 if ($this->max_bodysize && preg_match('/\r?\nContent-Length:\s*(\d+)\r?\n/i', $r_headers, $match)) {
329 if (!preg_match('/^HTTP\/(\d\.\d)\s*(\d+).*?\n/s', $r_headers, $m))
330 throw new HTTPClientException('Server returned bad answer ' . $r_headers);
335 $this->resp_headers = $this->parseHeaders($r_headers);
388 if ($this->header_regexp && !preg_match($this->header_regexp, $r_headers))
538 $r_headers = '';
541 $r_headers
[all...]