Lines Matching refs:curl
34 CURL *curl; in test() local
43 if ((curl = curl_easy_init()) == NULL) { in test()
49 test_setopt(curl, CURLOPT_HEADERDATA, stdout); in test()
50 test_setopt(curl, CURLOPT_WRITEDATA, stdout); in test()
51 test_setopt(curl, CURLOPT_VERBOSE, 1L); in test()
53 test_setopt(curl, CURLOPT_URL, URL); in test()
55 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_OPTIONS); in test()
61 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
65 res = curl_easy_perform(curl); in test()
72 test_setopt(curl, CURLOPT_RTSP_CLIENT_CSEQ, 999L); in test()
73 test_setopt(curl, CURLOPT_RTSP_TRANSPORT, in test()
75 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_SETUP); in test()
81 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
85 res = curl_easy_perform(curl); in test()
89 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_PLAY); in test()
95 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
99 res = curl_easy_perform(curl); in test()
107 curl_easy_cleanup(curl); in test()