Lines Matching refs:curl
29 CURL *curl; in test() local
36 curl = curl_easy_init(); in test()
37 if(!curl) { in test()
43 test_setopt(curl, CURLOPT_URL, URL); in test()
44 test_setopt(curl, CURLOPT_HEADER, 1L); in test()
45 test_setopt(curl, CURLOPT_REFERER, "http://example.com/the-moo"); in test()
46 test_setopt(curl, CURLOPT_USERAGENT, "the-moo agent next generation"); in test()
47 test_setopt(curl, CURLOPT_COOKIE, "name=moo"); in test()
48 test_setopt(curl, CURLOPT_VERBOSE, 1L); in test()
50 res = curl_easy_perform(curl); in test()
56 curl_easy_reset(curl); in test()
58 test_setopt(curl, CURLOPT_URL, URL); in test()
59 test_setopt(curl, CURLOPT_HEADER, 1L); in test()
60 test_setopt(curl, CURLOPT_VERBOSE, 1L); in test()
62 res = curl_easy_perform(curl); in test()
68 curl_easy_cleanup(curl); in test()