Lines Matching defs:message
432 * If a message is received with both a Transfer-Encoding header field and a Content-Length
437 // for keep alive we need to read the whole message to clean up the socket for the next read
578 * @param string $message Description of what is being read
583 protected function sendData($socket, $data, $message)
592 throw new HTTPClientException(sprintf('Timeout while sending %s (%.3fs)', $message, $time_used), -100);
594 throw new HTTPClientException("Socket disconnected while writing $message");
609 throw new HTTPClientException("Failed writing to socket while sending $message", -100);
622 * @param string $message Description of what is being read
629 protected function readData($socket, $nbytes, $message, $ignore_eof = false)
641 $message,
649 throw new HTTPClientException("Premature End of File (socket) while reading $message");
666 throw new HTTPClientException("Failed reading from socket while reading $message", -100);
680 * @param string $message Description of what is being read
686 protected function readLine($socket, $message)
693 sprintf('Timeout while reading %s (%.3fs) >%s<', $message, $time_used, $r_data),
697 throw new HTTPClientException("Premature End of File (socket) while reading $message");