Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
59 CURL *curl;
66 easy_init(curl);
68 easy_setopt(curl, CURLOPT_URL, URL);
69 easy_setopt(curl, CURLOPT_POST, 1L);
71 easy_setopt(curl, CURLOPT_READFUNCTION, read_callback);
72 easy_setopt(curl, CURLOPT_READDATA, &pooh);
75 easy_setopt(curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
78 result = curl_easy_perform(curl);
82 curl_easy_cleanup(curl);