Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
36 CURL *curl;
43 curl = curl_easy_init();
44 if(!curl) {
50 test_setopt(curl, CURLOPT_PROXY, libtest_arg2);
51 test_setopt(curl, CURLOPT_URL, URL);
52 test_setopt(curl, CURLOPT_PROXY_TRANSFER_MODE, 1L);
53 test_setopt(curl, CURLOPT_VERBOSE, 1L);
56 test_setopt(curl, CURLOPT_TRANSFERTEXT, 1L);
59 res = curl_easy_perform(curl);
63 curl_easy_cleanup(curl);