Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
82 CURL *curl = NULL;
91 easy_init(curl);
93 easy_setopt(curl, CURLOPT_URL, URL);
94 easy_setopt(curl, CURLOPT_VERBOSE, 1L);
95 easy_setopt(curl, CURLOPT_HEADER, 1L);
99 easy_setopt(curl, CURLOPT_IOCTLFUNCTION, ioctlcallback);
100 easy_setopt(curl, CURLOPT_IOCTLDATA, &counter);
102 easy_setopt(curl, CURLOPT_READFUNCTION, readcallback);
103 easy_setopt(curl, CURLOPT_READDATA, &counter);
106 easy_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)strlen(uploadthis));
108 easy_setopt(curl, CURLOPT_POST, 1L);
109 easy_setopt(curl, CURLOPT_PROXY, libtest_arg2);
110 easy_setopt(curl, CURLOPT_PROXYUSERPWD, libtest_arg3);
111 easy_setopt(curl, CURLOPT_PROXYAUTH,
116 multi_add_handle(m, curl);
150 curl_multi_remove_handle(m, curl);
152 curl_easy_cleanup(curl);