Lines Matching refs:c
42 CURL *c = NULL; in test() local
51 easy_init(c); in test()
53 easy_setopt(c, CURLOPT_PROXY, libtest_arg2); /* set in first.c */ in test()
54 easy_setopt(c, CURLOPT_URL, URL); in test()
55 easy_setopt(c, CURLOPT_USERPWD, "test:ing"); in test()
56 easy_setopt(c, CURLOPT_PROXYUSERNAME, "test%20"); in test()
57 easy_setopt(c, CURLOPT_PROXYPASSWORD, "ing%41"); in test()
58 easy_setopt(c, CURLOPT_HTTPPROXYTUNNEL, 1L); in test()
59 easy_setopt(c, CURLOPT_HEADER, 1L); in test()
60 easy_setopt(c, CURLOPT_VERBOSE, 1L); in test()
64 multi_add_handle(m, c); in test()
98 curl_multi_remove_handle(m, c); in test()
100 curl_easy_cleanup(c); in test()