Lines Matching refs:curl
37 CURL *curl; in test() local
56 if ((curl = curl_easy_init()) == NULL) { in test()
63 test_setopt(curl, CURLOPT_HEADERDATA, stdout); in test()
64 test_setopt(curl, CURLOPT_WRITEDATA, stdout); in test()
65 test_setopt(curl, CURLOPT_VERBOSE, 1L); in test()
67 test_setopt(curl, CURLOPT_URL, URL); in test()
69 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_SETUP); in test()
70 res = curl_easy_perform(curl); in test()
84 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
88 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_SETUP); in test()
89 test_setopt(curl, CURLOPT_RTSP_TRANSPORT, "Fake/NotReal/JustATest;foo=baz"); in test()
90 res = curl_easy_perform(curl); in test()
94 curl_easy_getinfo(curl, CURLINFO_RTSP_SESSION_ID, &rtsp_session_id); in test()
102 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
106 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_TEARDOWN); in test()
107 res = curl_easy_perform(curl); in test()
110 test_setopt(curl, CURLOPT_RTSP_SESSION_ID, NULL); in test()
119 curl_easy_cleanup(curl); in test()