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

Method perform

src/curl_easy.cpp:76–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74
75// Implementation of abstract method perform.
76void curl_easy::perform() {
77 const CURLcode code = curl_easy_perform(this->curl);
78 if (code != CURLE_OK) {
79 throw curl_easy_exception(code,__FUNCTION__);
80 }
81}
82
83// Implementation of escape method.
84void curl_easy::escape(string &url) {

Callers 8

mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45

Calls 1

curl_easy_exceptionClass · 0.85

Tested by

no test coverage detected