Lines Matching refs:curl
106 CURL *curl; in test() local
122 curl = curl_easy_init(); in test()
123 if(!curl) { in test()
129 test_setopt(curl, CURLOPT_URL, URL); in test()
136 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
140 test_setopt(curl, CURLOPT_INTERLEAVEFUNCTION, rtp_write); in test()
141 test_setopt(curl, CURLOPT_TIMEOUT, 30L); in test()
142 test_setopt(curl, CURLOPT_VERBOSE, 1L); in test()
143 test_setopt(curl, CURLOPT_WRITEDATA, protofile); in test()
145 test_setopt(curl, CURLOPT_RTSP_TRANSPORT, "RTP/AVP/TCP;interleaved=0-1"); in test()
146 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_SETUP); in test()
148 res = curl_easy_perform(curl); in test()
158 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
161 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_PLAY); in test()
163 res = curl_easy_perform(curl); in test()
173 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
176 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_DESCRIBE); in test()
178 res = curl_easy_perform(curl); in test()
187 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
190 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_PLAY); in test()
192 res = curl_easy_perform(curl); in test()
201 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_RECEIVE); in test()
202 res = curl_easy_perform(curl); in test()
211 curl_easy_cleanup(curl); in test()