Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
28 #include <curl/multi.h>
32 CURL *curl = NULL;
37 curl = curl_easy_init();
38 if(curl) {
41 curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
42 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
44 curl_easy_setopt(curl, CURLOPT_CURLU, u);
45 res = curl_easy_perform(curl);
50 res = curl_easy_perform(curl);
56 curl_easy_cleanup(curl);