Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
35 CURL *curl = NULL;
40 easy_init(curl);
42 easy_setopt(curl, CURLOPT_URL, URL);
43 easy_setopt(curl, CURLOPT_TIMECONDITION, (long)CURL_TIMECOND_IFMODSINCE);
45 easy_setopt(curl, CURLOPT_TIMEVALUE, 1566210680L);
53 easy_setopt(curl, CURLOPT_HTTPHEADER, header);
55 res = curl_easy_perform(curl);
64 res = curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet);
76 curl_easy_cleanup(curl);