Home | History | Annotate | Download | only in libtest

Lines Matching refs:CURL

12  * are also available at https://curl.haxx.se/docs/copyright.html.
29 CURL *curl = NULL;
40 if((curl = curl_easy_init()) == NULL) {
53 test_setopt(curl, CURLOPT_URL, URL);
54 test_setopt(curl, CURLOPT_PROXY, libtest_arg2);
55 test_setopt(curl, CURLOPT_HTTPHEADER, hhl);
56 test_setopt(curl, CURLOPT_PROXYHEADER, phl);
57 test_setopt(curl, CURLOPT_HEADEROPT, CURLHEADER_SEPARATE);
58 test_setopt(curl, CURLOPT_VERBOSE, 1L);
59 test_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
60 test_setopt(curl, CURLOPT_HEADER, 1L);
62 res = curl_easy_perform(curl);
66 curl_easy_cleanup(curl);