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

Method pause

src/curl_easy.cpp:111–116  ·  view source on GitHub ↗

Implementation of pause method.

Source from the content-addressed store, hash-verified

109
110// Implementation of pause method.
111void curl_easy::pause(const int bitmask) {
112 const CURLcode code = curl_easy_pause(this->curl,bitmask);
113 if (code != CURLE_OK) {
114 throw curl_easy_exception(code,__FUNCTION__);
115 }
116}

Callers

nothing calls this directly

Calls 1

curl_easy_exceptionClass · 0.85

Tested by

no test coverage detected