Implementation of pause method.
| 109 | |
| 110 | // Implementation of pause method. |
| 111 | void curl_easy::pause(const int bitmask) { |
| 112 | const CURLcode code = curl_easy_pause(this->curl,bitmask); |
| 113 | if (code != CURLE_OK) { |
| 114 | throw curl_easy_exception(code,__FUNCTION__); |
| 115 | } |
| 116 | } |
nothing calls this directly
no test coverage detected