Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
31 CURL *curl;
39 curl = curl_easy_init();
40 if(curl) {
41 curl_easy_setopt(curl, CURLOPT_URL, URL);
44 curl_easy_setopt(curl, CURLOPT_POST, 1L);
46 curl_easy_setopt(curl, CURLOPT_POSTFIELDS, "");
48 res = curl_easy_perform(curl);
52 curl_easy_cleanup(curl);