Lines Matching refs:curl
30 CURL *curl; in test() local
40 curl = curl_easy_init(); in test()
41 if(!curl) { in test()
47 test_setopt(curl, CURLOPT_VERBOSE, 1L); in test()
48 test_setopt(curl, CURLOPT_AWS_SIGV4, "xxx"); in test()
49 test_setopt(curl, CURLOPT_USERPWD, "xxx"); in test()
50 test_setopt(curl, CURLOPT_HEADER, 0L); in test()
51 test_setopt(curl, CURLOPT_URL, URL); in test()
58 test_setopt(curl, CURLOPT_CONNECT_TO, connect_to); in test()
62 test_setopt(curl, CURLOPT_HTTPHEADER, list); in test()
64 res = curl_easy_perform(curl); in test()
70 curl_easy_cleanup(curl); in test()