Lines Matching refs:curl
46 CURL *curl; in test() local
55 curl = curl_easy_init(); in test()
56 if(!curl) { in test()
63 test_setopt(curl, CURLOPT_URL, URL); in test()
66 test_setopt(curl, CURLOPT_NOPROGRESS, 0L); in test()
68 test_setopt(curl, CURLOPT_PROGRESSFUNCTION, progress_callback); in test()
72 test_setopt(curl, CURLOPT_VERBOSE, 1L); in test()
75 test_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); in test()
78 test_setopt(curl, CURLOPT_HEADER, 1L); in test()
81 res = curl_easy_perform(curl); in test()
86 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, in test()
99 curl_easy_cleanup(curl); in test()