Lines Matching refs:CURL
12 * are also available at https://curl.haxx.se/docs/copyright.html.
44 CURL *curl;
53 if((curl = curl_easy_init()) == NULL) {
60 test_setopt(curl, CURLOPT_URL, URL);
63 test_setopt(curl, CURLOPT_NOPROGRESS, 0L);
64 test_setopt(curl, CURLOPT_PROGRESSFUNCTION, progress_callback);
67 test_setopt(curl, CURLOPT_VERBOSE, 1L);
70 test_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
73 test_setopt(curl, CURLOPT_HEADER, 1L);
76 res = curl_easy_perform(curl);
80 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD,
92 curl_easy_cleanup(curl);