| 2842 | } |
| 2843 | |
| 2844 | bool WebRequestCURL::StartRequest() |
| 2845 | { |
| 2846 | _bytesSent = 0; |
| 2847 | |
| 2848 | if (!_sessionCURL->StartRequest(*this)) { |
| 2849 | SetState(WebRequest::State::Failed); |
| 2850 | return false; |
| 2851 | } |
| 2852 | |
| 2853 | return true; |
| 2854 | } |
| 2855 | |
| 2856 | void WebRequestCURL::DoCancel() |
| 2857 | { |
no test coverage detected