diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-11-13 16:15:26 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-11-13 16:15:26 +0100 |
commit | 64e959ffe37c436503f9fed1ce2d6ee6ae50bd9a (patch) | |
tree | f86e6fba6c3250aea26429bed2f5c80c97494aa0 /lib/rtsp.c | |
parent | 86e21973376320b243b180679ff9c439b92e7cd0 (diff) | |
download | curl-64e959ffe37c436503f9fed1ce2d6ee6ae50bd9a.tar.gz |
cleanup: general removal of TODO (and similar) comments
They tend to never get updated anyway so they're frequently inaccurate
and we never go back to revisit them anyway. We document issues to work
on properly in KNOWN_BUGS and TODO instead.
Diffstat (limited to 'lib/rtsp.c')
-rw-r--r-- | lib/rtsp.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/rtsp.c b/lib/rtsp.c index f8e6b23dc..d190eef9f 100644 --- a/lib/rtsp.c +++ b/lib/rtsp.c @@ -42,16 +42,6 @@ #include "curl_memory.h" #include "memdebug.h" -/* - * TODO (general) - * -incoming server requests - * -server CSeq counter - * -digest authentication - * -connect thru proxy - * -pipelining? - */ - - #define RTP_PKT_CHANNEL(p) ((int)((unsigned char)((p)[1]))) #define RTP_PKT_LENGTH(p) ((((int)((unsigned char)((p)[2]))) << 8) | \ @@ -222,7 +212,6 @@ static CURLcode rtsp_done(struct connectdata *conn, else if(data->set.rtspreq == RTSPREQ_RECEIVE && (conn->proto.rtspc.rtp_channel == -1)) { infof(data, "Got an RTP Receive with a CSeq of %ld\n", CSeq_recv); - /* TODO CPC: Server -> Client logic here */ } } @@ -328,8 +317,6 @@ static CURLcode rtsp_do(struct connectdata *conn, bool *done) return CURLE_BAD_FUNCTION_ARGUMENT; } - /* TODO: proxy? */ - /* Stream URI. Default to server '*' if not specified */ if(data->set.str[STRING_RTSP_STREAM_URI]) { p_stream_uri = data->set.str[STRING_RTSP_STREAM_URI]; |