Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
32 CURL *curl = NULL;
52 curl = curl_easy_init();
53 if(!curl) {
60 mime = curl_mime_init(curl);
94 test_setopt(curl, CURLOPT_URL, URL);
97 test_setopt(curl, CURLOPT_MIMEPOST, mime);
100 test_setopt(curl, CURLOPT_UPLOAD_BUFFERSIZE, 16411L);
103 test_setopt(curl, CURLOPT_VERBOSE, 1L);
106 test_setopt(curl, CURLOPT_HEADER, 1L);
109 res = curl_easy_perform(curl);
114 curl_easy_cleanup(curl);