Lines Matching refs:curl
31 CURL *curl; in test() local
38 curl = curl_easy_init(); in test()
39 if(!curl) { in test()
45 test_setopt(curl, CURLOPT_URL, URL); in test()
46 test_setopt(curl, CURLOPT_HEADER, 1L); in test()
47 test_setopt(curl, CURLOPT_USERAGENT, "the-moo agent next generation"); in test()
48 test_setopt(curl, CURLOPT_COOKIEFILE, libtest_arg2); in test()
49 test_setopt(curl, CURLOPT_VERBOSE, 1L); in test()
51 res = curl_easy_perform(curl); in test()
58 test_setopt(curl, CURLOPT_COOKIEFILE, NULL); in test()
60 res = curl_easy_perform(curl); in test()
66 curl_easy_cleanup(curl); in test()