Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
63 CURL *curl;
70 curl = curl_easy_init();
71 if(!curl) {
78 test_setopt(curl, CURLOPT_URL, URL);
80 test_setopt(curl, CURLOPT_RESOLVER_START_DATA, TEST_DATA_STRING);
81 test_setopt(curl, CURLOPT_RESOLVER_START_FUNCTION, resolver_alloc_cb_fail);
84 res = curl_easy_perform(curl);
93 test_setopt(curl, CURLOPT_RESOLVER_START_FUNCTION, resolver_alloc_cb_pass);
96 res = curl_easy_perform(curl);
110 curl_easy_cleanup(curl);