Home | History | Annotate | Download | only in libtest

Lines Matching refs:CURL

12  * are also available at https://curl.haxx.se/docs/copyright.html.
37 CURL *curl;
45 if((curl = curl_easy_init()) == NULL) {
52 test_setopt(curl, CURLOPT_URL, URL);
55 test_setopt(curl, CURLOPT_POST, 1L);
58 test_setopt(curl, CURLOPT_POSTFIELDSIZE, 1L);
61 test_setopt(curl, CURLOPT_READFUNCTION, read_callback);
64 test_setopt(curl, CURLOPT_READDATA, NULL);
67 test_setopt(curl, CURLOPT_VERBOSE, 1L);
70 test_setopt(curl, CURLOPT_HEADER, 1L);
73 res = curl_easy_perform(curl);
78 curl_easy_cleanup(curl);