Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
28 https://curl.se/mail/lib-2011-10/0323.html
44 CURL *curl;
51 curl = curl_easy_init();
52 if(!curl) {
58 test_setopt(curl, CURLOPT_URL, URL);
59 test_setopt(curl, CURLOPT_HEADER, 1L);
60 test_setopt(curl, CURLOPT_PROXYAUTH,
62 test_setopt(curl, CURLOPT_PROXY, libtest_arg2); /* set in first.c */
63 test_setopt(curl, CURLOPT_PROXYUSERPWD, "me:password");
65 res = curl_easy_perform(curl);
69 curl_easy_cleanup(curl);