Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
38 CURL *curl;
80 /* get a curl handle */
81 curl = curl_easy_init();
82 if(!curl) {
90 test_setopt(curl, CURLOPT_UPLOAD, 1L);
93 test_setopt(curl, CURLOPT_VERBOSE, 1L);
96 test_setopt(curl, CURLOPT_URL, URL);
99 test_setopt(curl, CURLOPT_READDATA, hd_src);
102 res = curl_easy_perform(curl);
108 res = curl_easy_perform(curl);
115 curl_easy_cleanup(curl);