12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #ifndef HEADER_CURL_RTSP_H
- #define HEADER_CURL_RTSP_H
- #ifndef CURL_DISABLE_RTSP
- extern const struct Curl_handler Curl_handler_rtsp;
- CURLcode Curl_rtsp_parseheader(struct connectdata *conn, char *header);
- #else
- #define Curl_rtsp_parseheader(x,y) CURLE_NOT_BUILT_IN
- #endif
- struct rtsp_conn {
- char *rtp_buf;
- ssize_t rtp_bufsize;
- int rtp_channel;
- };
- struct RTSP {
-
- struct HTTP http_wrapper;
- long CSeq_sent;
- long CSeq_recv;
- };
- #endif
|