Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
52 CURL *curl;
57 easy_init(curl);
59 easy_setopt(curl, CURLOPT_URL, URL);
60 easy_setopt(curl, CURLOPT_TIMEOUT, (long)7);
61 easy_setopt(curl, CURLOPT_NOSIGNAL, (long)1);
63 easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, progressKiller);
64 easy_setopt(curl, CURLOPT_PROGRESSDATA, NULL);
66 easy_setopt(curl, CURLOPT_NOPROGRESS, (long)0);
68 res = curl_easy_perform(curl);
74 curl_easy_cleanup(curl);