Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
26 * https://curl.se/mail/lib-2011-03/0066.html
39 CURL *curl = NULL;
49 easy_init(curl);
51 easy_setopt(curl, CURLOPT_USERPWD, libtest_arg2);
52 easy_setopt(curl, CURLOPT_SSH_PUBLIC_KEYFILE, test_argv[3]);
53 easy_setopt(curl, CURLOPT_SSH_PRIVATE_KEYFILE, test_argv[4]);
55 easy_setopt(curl, CURLOPT_UPLOAD, 1L);
56 easy_setopt(curl, CURLOPT_VERBOSE, 1L);
58 easy_setopt(curl, CURLOPT_URL, URL);
59 easy_setopt(curl, CURLOPT_INFILESIZE, (long)5);
61 multi_add_handle(multiHandle, curl);
73 mres = curl_multi_remove_handle(multiHandle, curl);
86 curl_easy_cleanup(curl);