Home | History | Annotate | Download | only in libtest

Lines Matching refs:CURL

12  * are also available at https://curl.haxx.se/docs/copyright.html.
32 CURL *curl;
33 CURL *curl2;
39 curl = curl_easy_init();
40 if(curl) {
42 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
43 curl_easy_setopt(curl, CURLOPT_HEADER, 1L);
45 curl2 = curl_easy_duphandle(curl);
65 curl_easy_cleanup(curl);