Lines Matching defs:curl
12 * are also available at https://curl.haxx.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
38 CURL *curl;
46 easy_init(curl);
49 easy_setopt(curl, CURLOPT_URL, URL);
50 easy_setopt(curl, CURLOPT_WRITEFUNCTION, writecb);
51 easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
52 res = curl_easy_perform(curl);
64 h = curl_easy_nextheader(curl, origins, count, NULL);
71 easy_setopt(curl, CURLOPT_URL, libtest_arg2);
72 res = curl_easy_perform(curl);
82 h = curl_easy_nextheader(curl, origins, count, NULL);
89 curl_easy_cleanup(curl);