Lines Matching refs:CURL
12 * are also available at https://curl.haxx.se/docs/copyright.html.
32 CURL *curl;
40 if((curl = curl_easy_init()) == NULL) {
47 test_setopt(curl, CURLOPT_HEADERDATA, stdout);
48 test_setopt(curl, CURLOPT_WRITEDATA, stdout);
50 test_setopt(curl, CURLOPT_URL, URL);
51 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, URL);
52 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_OPTIONS);
53 test_setopt(curl, CURLOPT_USERAGENT, "test567");
56 test_setopt(curl, CURLOPT_RTSPHEADER, custom_headers);
58 res = curl_easy_perform(curl);
64 curl_easy_cleanup(curl);