Lines Matching refs:easy
33 static void showem(CURL *easy, unsigned int type) in showem() argument
38 while((header = curl_easy_nextheader(easy, type, 0, prev))) { in showem()
54 CURL *easy; in test() local
59 easy_init(easy); in test()
60 curl_easy_setopt(easy, CURLOPT_URL, URL); in test()
61 curl_easy_setopt(easy, CURLOPT_VERBOSE, 1L); in test()
62 curl_easy_setopt(easy, CURLOPT_FOLLOWLOCATION, 1L); in test()
64 curl_easy_setopt(easy, CURLOPT_WRITEFUNCTION, write_cb); in test()
68 curl_easy_setopt(easy, CURLOPT_PROXY, libtest_arg2); in test()
69 curl_easy_setopt(easy, CURLOPT_HTTPPROXYTUNNEL, 1L); in test()
71 res = curl_easy_perform(easy); in test()
75 showem(easy, CURLH_CONNECT|CURLH_HEADER|CURLH_TRAILER|CURLH_1XX); in test()
78 curl_easy_cleanup(easy); in test()