Home | History | Annotate | Download | only in libtest

Lines Matching refs:CURL

12  * are also available at https://curl.haxx.se/docs/copyright.html.
57 CURL *curl;
64 easy_init(curl);
66 easy_setopt(curl, CURLOPT_URL, URL);
67 easy_setopt(curl, CURLOPT_POST, 1L);
69 easy_setopt(curl, CURLOPT_READFUNCTION, read_callback);
70 easy_setopt(curl, CURLOPT_READDATA, &pooh);
72 result = curl_easy_perform(curl);
76 curl_easy_cleanup(curl);