Lines Matching defs:curl
12 * are also available at https://curl.haxx.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
46 CURL *curl;
53 easy_init(curl);
56 easy_setopt(curl, CURLOPT_UPLOAD, 1L);
57 easy_setopt(curl, CURLOPT_HEADER, 1L);
58 easy_setopt(curl, CURLOPT_READFUNCTION, put_callback);
61 easy_setopt(curl, CURLOPT_READDATA, &pbuf);
62 easy_setopt(curl, CURLOPT_INFILESIZE, (long)strlen(testput));
63 easy_setopt(curl, CURLOPT_URL, URL);
64 res = curl_easy_perform(curl);
69 easy_setopt(curl, CURLOPT_POST, 1L);
70 easy_setopt(curl, CURLOPT_POSTFIELDS, testput);
71 easy_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)strlen(testput));
72 res = curl_easy_perform(curl);
75 curl_easy_cleanup(curl);