Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
42 CURL *curl;
50 /* get a curl handle */
51 curl = curl_easy_init();
52 if(!curl) {
59 test_setopt(curl, CURLOPT_VERBOSE, 1L);
62 test_setopt(curl, CURLOPT_PORT, strtol(libtest_arg2, NULL, 10));
65 test_setopt(curl, CURLOPT_URL, URL);
68 res = curl_easy_perform(curl);
72 curl_easy_cleanup(curl);