Lines Matching refs:curl
37 CURL *curl; in test() local
56 curl = curl_easy_init(); in test()
57 if(!curl) { in test()
64 test_setopt(curl, CURLOPT_HEADERDATA, stdout); in test()
65 test_setopt(curl, CURLOPT_WRITEDATA, stdout); in test()
66 test_setopt(curl, CURLOPT_VERBOSE, 1L); in test()
68 test_setopt(curl, CURLOPT_URL, URL); in test()
70 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_SETUP); in test()
71 res = curl_easy_perform(curl); in test()
86 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
90 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_SETUP); in test()
91 test_setopt(curl, CURLOPT_RTSP_TRANSPORT, in test()
93 res = curl_easy_perform(curl); in test()
97 curl_easy_getinfo(curl, CURLINFO_RTSP_SESSION_ID, &rtsp_session_id); in test()
106 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
110 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_TEARDOWN); in test()
111 res = curl_easy_perform(curl); in test()
114 test_setopt(curl, CURLOPT_RTSP_SESSION_ID, NULL); in test()
123 curl_easy_cleanup(curl); in test()