Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
77 CURL *curl;
86 curl = curl_easy_init();
87 if(!curl) {
98 test_setopt(curl, CURLOPT_URL, URL);
99 test_setopt(curl, CURLOPT_UPLOAD, 1L);
100 test_setopt(curl, CURLOPT_READFUNCTION, read_callback);
101 test_setopt(curl, CURLOPT_READDATA, &upload_ctx);
102 test_setopt(curl, CURLOPT_MAIL_FROM, FROM);
103 test_setopt(curl, CURLOPT_MAIL_RCPT, rcpt_list);
104 test_setopt(curl, CURLOPT_VERBOSE, 1L);
106 res = curl_easy_perform(curl);
111 curl_easy_cleanup(curl);