summaryrefslogtreecommitdiff
path: root/lib/rtsp.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rtsp.h')
-rw-r--r--lib/rtsp.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/rtsp.h b/lib/rtsp.h
index 6bce41a61..6e55616b3 100644
--- a/lib/rtsp.h
+++ b/lib/rtsp.h
@@ -29,8 +29,6 @@
#ifndef CURL_DISABLE_RTSP
-#include "dynbuf.h"
-
extern const struct Curl_handler Curl_handler_rtsp;
CURLcode Curl_rtsp_parseheader(struct Curl_easy *data, char *header);
@@ -47,7 +45,8 @@ CURLcode Curl_rtsp_parseheader(struct Curl_easy *data, char *header);
* Currently, only used for tracking incomplete RTP data reads
*/
struct rtsp_conn {
- struct dynbuf buf;
+ char *rtp_buf;
+ ssize_t rtp_bufsize;
int rtp_channel;
};