Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
33 CURL *curl;
63 curl = curl_easy_init();
64 if(!curl) {
72 test_setopt(curl, CURLOPT_URL, URL);
75 test_setopt(curl, CURLOPT_HTTPPOST, formpost);
78 test_setopt(curl, CURLOPT_VERBOSE, 1L);
81 test_setopt(curl, CURLOPT_HEADER, 1L);
84 res = curl_easy_perform(curl);
89 curl_easy_cleanup(curl);