Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
42 CURL *curl;
49 curl = curl_easy_init();
50 if(!curl) {
56 test_setopt(curl, CURLOPT_URL, URL);
57 test_setopt(curl, CURLOPT_WILDCARDMATCH, 1L);
58 test_setopt(curl, CURLOPT_FNMATCH_FUNCTION, new_fnmatch);
59 test_setopt(curl, CURLOPT_TIMEOUT_MS, (long) TEST_HANG_TIMEOUT);
61 res = curl_easy_perform(curl);
66 res = curl_easy_perform(curl);
73 curl_easy_cleanup(curl);