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) {
56 test_setopt(curl, CURLOPT_URL, URL);
57 test_setopt(curl, CURLOPT_PROXY, libtest_arg2);
58 test_setopt(curl, CURLOPT_HTTPHEADER, hhl);
59 test_setopt(curl, CURLOPT_PROXYHEADER, phl);
60 test_setopt(curl, CURLOPT_HEADEROPT, CURLHEADER_SEPARATE);
61 test_setopt(curl, CURLOPT_VERBOSE, 1L);
62 test_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
63 test_setopt(curl, CURLOPT_HEADER, 1L);
65 res = curl_easy_perform(curl);
69 curl_easy_cleanup(curl);