Lines Matching refs:CURL
12 * are also available at https://curl.haxx.se/docs/copyright.html.
26 https://curl.haxx.se/mail/lib-2011-10/0323.html
42 CURL *curl;
49 if((curl = curl_easy_init()) == NULL) {
55 test_setopt(curl, CURLOPT_URL, URL);
56 test_setopt(curl, CURLOPT_HEADER, 1L);
57 test_setopt(curl, CURLOPT_PROXYAUTH,
59 test_setopt(curl, CURLOPT_PROXY, libtest_arg2); /* set in first.c */
60 test_setopt(curl, CURLOPT_PROXYUSERPWD, "me:password");
62 res = curl_easy_perform(curl);
66 curl_easy_cleanup(curl);