Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
31 CURL *curl;
40 curl = curl_easy_init();
41 if(!curl) {
47 test_setopt(curl, CURLOPT_URL, URL);
48 test_setopt(curl, CURLOPT_HEADER, 1L);
50 res = curl_easy_perform(curl);
55 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD,
67 curl_easy_cleanup(curl);