Implementation of assign method.
| 125 | |
| 126 | // Implementation of assign method. |
| 127 | void curl_multi::assign(const curl_socket_t sockfd, void *sockptr) { |
| 128 | const CURLMcode code = curl_multi_assign(this->curl.get(),sockfd,sockptr); |
| 129 | if (code != CURLM_OK) { |
| 130 | throw curl_multi_exception(code,__FUNCTION__); |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | // Implementation of timeout method. |
| 135 | void curl_multi::timeout(long *timeout) { |
nothing calls this directly
no test coverage detected