MCPcopy Create free account
hub / github.com/JosephP91/curlcpp / timeout

Method timeout

src/curl_multi.cpp:135–140  ·  view source on GitHub ↗

Implementation of timeout method.

Source from the content-addressed store, hash-verified

133
134// Implementation of timeout method.
135void 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.
143curl_multi::curl_message::curl_message(const CURLMsg *msg, const curl_easy *handler) :

Callers

nothing calls this directly

Calls 2

getMethod · 0.45

Tested by

no test coverage detected