Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
31 CURL *curl = NULL;
36 easy_init(curl);
38 easy_setopt(curl, CURLOPT_URL, URL);
39 easy_setopt(curl, CURLOPT_HEADER, 1L);
40 easy_setopt(curl, CURLOPT_TIMECONDITION, (long)CURL_TIMECOND_IFMODSINCE);
43 easy_setopt(curl, CURLOPT_TIMEVALUE, 1566210680L);
45 res = curl_easy_perform(curl);
49 curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet);
56 easy_setopt(curl, CURLOPT_TIMEVALUE, 1L);
58 res = curl_easy_perform(curl);
62 curl_easy_getinfo(curl, CURLINFO_CONDITION_UNMET, &unmet);
73 curl_easy_cleanup(curl);