Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
31 CURL *curl = NULL;
42 curl = curl_easy_init();
43 if(!curl) {
49 test_setopt(curl, CURLOPT_URL, bURL);
50 test_setopt(curl, CURLOPT_PROXY, libtest_arg2);
51 test_setopt(curl, CURLOPT_VERBOSE, 1L);
52 test_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
53 test_setopt(curl, CURLOPT_HEADER, 1L);
55 res = curl_easy_perform(curl);
59 curl_easy_cleanup(curl);