Lines Matching refs:curl
36 CURL *curl; in test() local
45 curl = curl_easy_init(); in test()
46 if(!curl) { in test()
52 test_setopt(curl, CURLOPT_HEADERDATA, stdout); in test()
53 test_setopt(curl, CURLOPT_WRITEDATA, stdout); in test()
54 test_setopt(curl, CURLOPT_VERBOSE, 1L); in test()
56 test_setopt(curl, CURLOPT_URL, URL); in test()
58 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_OPTIONS); in test()
65 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
69 res = curl_easy_perform(curl); in test()
76 test_setopt(curl, CURLOPT_RTSP_CLIENT_CSEQ, 999L); in test()
77 test_setopt(curl, CURLOPT_RTSP_TRANSPORT, in test()
79 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_SETUP); in test()
86 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
90 res = curl_easy_perform(curl); in test()
94 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_PLAY); in test()
101 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
105 res = curl_easy_perform(curl); in test()
117 curl_easy_cleanup(curl); in test()