Implementation of wait method.
| 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__); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | // Implementation of assign method. |
| 127 | void curl_multi::assign(const curl_socket_t sockfd, void *sockptr) { |
nothing calls this directly
no test coverage detected