| 36 | #endif |
| 37 | |
| 38 | void HttpClient::resetState() |
| 39 | { |
| 40 | iState = eIdle; |
| 41 | iStatusCode = 0; |
| 42 | iContentLength = 0; |
| 43 | iBodyLengthConsumed = 0; |
| 44 | iContentLengthPtr = kContentLengthPrefix; |
| 45 | iHttpResponseTimeout = kHttpResponseTimeout; |
| 46 | } |
| 47 | |
| 48 | void HttpClient::stop() |
| 49 | { |
nothing calls this directly
no outgoing calls
no test coverage detected