Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
96 CURL *curl;
103 curl = curl_easy_init();
104 if(curl) {
106 ws_data.easy = curl;
108 curl_easy_setopt(curl, CURLOPT_URL, URL);
110 curl_easy_setopt(curl, CURLOPT_USERAGENT, "webbie-sox/3");
111 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
112 curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, writecb);
113 curl_easy_setopt(curl, CURLOPT_WRITEDATA, &ws_data);
114 res = curl_easy_perform(curl);
117 curl_easy_cleanup(curl);