Implementation of timeout method.
| 133 | |
| 134 | // Implementation of timeout method. |
| 135 | void curl_multi::timeout(long *timeout) { |
| 136 | const CURLMcode code = curl_multi_timeout(this->curl.get(),timeout); |
| 137 | if (code != CURLM_OK) { |
| 138 | throw curl_multi_exception(code,__FUNCTION__); |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | // Implementation of curl_message constructor. |
| 143 | curl_multi::curl_message::curl_message(const CURLMsg *msg, const curl_easy *handler) : |
nothing calls this directly
no test coverage detected