| 50 | } |
| 51 | |
| 52 | void HTTPSClient::onDisconnected() |
| 53 | { |
| 54 | // Receive HTTP response body |
| 55 | if (_response.IsPendingBody()) |
| 56 | { |
| 57 | onReceivedResponse(_response); |
| 58 | _response.Clear(); |
| 59 | return; |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | std::future<HTTPResponse> HTTPSClientEx::SendRequest(const HTTPRequest& request, const CppCommon::Timespan& timeout) |
| 64 | { |
nothing calls this directly
no test coverage detected