Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
42 CURL *curl = NULL;
51 curl = curl_easy_init();
52 if(!curl) {
58 test_setopt(curl, CURLOPT_URL, "http://99.99.99.99:9999");
59 test_setopt(curl, CURLOPT_VERBOSE, 1L);
60 test_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, opensocket);
62 res = curl_easy_perform(curl);
66 curl_easy_cleanup(curl);