Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
52 CURL *curl = NULL;
177 curl = curl_easy_init();
178 if(!curl) {
184 test_setopt(curl, CURLOPT_URL, URL);
187 test_setopt(curl, CURLOPT_HTTPPOST, formpost);
190 test_setopt(curl, CURLOPT_VERBOSE, 1L);
192 test_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
193 test_setopt(curl, CURLOPT_POSTREDIR, (long)CURL_REDIR_POST_301);
196 test_setopt(curl, CURLOPT_HEADER, 1L);
199 res = curl_easy_perform(curl);
204 curl_easy_cleanup(curl);