Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
39 CURL *curl = NULL;
48 easy_init(curl);
50 easy_setopt(curl, CURLOPT_URL, URL);
51 easy_setopt(curl, CURLOPT_VERBOSE, 1L);
52 easy_setopt(curl, CURLOPT_FAILONERROR, 1L);
56 multi_add_handle(m, curl);
76 curl_multi_remove_handle(m, curl);
80 curl_easy_reset(curl);
81 easy_setopt(curl, CURLOPT_URL, libtest_arg2);
82 easy_setopt(curl, CURLOPT_VERBOSE, 1L);
83 easy_setopt(curl, CURLOPT_FAILONERROR, 1L);
86 multi_add_handle(m, curl);
109 curl_easy_cleanup(curl);