Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
29 #include <curl/curl.h>
32 #error "this example requires curl 7.80.0 or later"
37 CURL *curl;
43 /* get a curl handle */
44 curl = curl_easy_init();
56 if(curl) {
58 curl_easy_setopt(curl, CURLOPT_CURLU, urlp);
59 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
62 curl_easy_setopt(curl, CURLOPT_PROTOCOLS_STR, "http,tftp,sftp");
64 res = curl_easy_perform(curl);
75 curl_easy_cleanup(curl);