| 432 | } |
| 433 | |
| 434 | bool HttpClient::endOfBodyReached() |
| 435 | { |
| 436 | if (endOfHeadersReached() && (contentLength() != kNoContentLengthHeader)) |
| 437 | { |
| 438 | // We've got to the body and we know how long it will be |
| 439 | return (iBodyLengthConsumed >= contentLength()); |
| 440 | } |
| 441 | return false; |
| 442 | } |
| 443 | |
| 444 | int HttpClient::read() |
| 445 | { |
nothing calls this directly
no outgoing calls
no test coverage detected