Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
41 CURL *curl;
88 /* get a curl handle */
89 curl = curl_easy_init();
90 if(!curl) {
102 curl_easy_cleanup(curl);
111 curl_easy_cleanup(curl);
119 test_setopt(curl, CURLOPT_UPLOAD, 1L);
122 test_setopt(curl, CURLOPT_VERBOSE, 1L);
125 test_setopt(curl, CURLOPT_URL, URL);
128 test_setopt(curl, CURLOPT_POSTQUOTE, headerlist);
131 test_setopt(curl, CURLOPT_READDATA, hd_src);
134 test_setopt(curl, CURLOPT_INFILESIZE_LARGE,
138 res = curl_easy_perform(curl);
148 curl_easy_cleanup(curl);