| 117 | |
| 118 | // Implementation of wait method. |
| 119 | void curl_multi::wait(struct curl_waitfd extra_fds[], const unsigned int extra_nfds, const int timeout_ms, int *numfds) { |
| 120 | const CURLMcode code = curl_multi_wait(this->curl.get(),extra_fds,extra_nfds,timeout_ms,numfds); |
| 121 | if (code != CURLM_OK) { |
| 122 | throw curl_multi_exception(code,__FUNCTION__); |
nothing calls this directly
no outgoing calls
no test coverage detected