Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
31 CURL *curl;
39 curl = curl_easy_init();
40 if(!curl) {
47 test_setopt(curl, CURLOPT_HTTP200ALIASES, icy);
48 test_setopt(curl, CURLOPT_VERBOSE, 1L);
49 test_setopt(curl, CURLOPT_HEADER, 1L);
50 test_setopt(curl, CURLOPT_URL, URL);
52 res = curl_easy_perform(curl);
56 curl_easy_cleanup(curl);