Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
39 CURL *curl;
47 curl = curl_easy_init();
48 if(!curl) {
55 test_setopt(curl, CURLOPT_URL, URL);
58 test_setopt(curl, CURLOPT_POST, 1L);
61 test_setopt(curl, CURLOPT_POSTFIELDSIZE, 1L);
64 test_setopt(curl, CURLOPT_READFUNCTION, read_callback);
67 test_setopt(curl, CURLOPT_READDATA, NULL);
70 test_setopt(curl, CURLOPT_VERBOSE, 1L);
73 test_setopt(curl, CURLOPT_HEADER, 1L);
76 res = curl_easy_perform(curl);
81 curl_easy_cleanup(curl);