Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
36 CURL *curl;
38 easy_init(curl);
41 easy_setopt(curl, CURLOPT_CURLU, curlu);
42 easy_setopt(curl, CURLOPT_ERRORBUFFER, error_buffer);
43 easy_setopt(curl, CURLOPT_VERBOSE, 1L);
45 easy_setopt(curl, CURLOPT_CONNECTTIMEOUT_MS, 5000L);
47 easy_setopt(curl, CURLOPT_PORT, 1L);
48 res = curl_easy_perform(curl);
66 easy_setopt(curl, CURLOPT_PORT, 0L);
68 res = curl_easy_perform(curl);
80 curl_easy_cleanup(curl);