aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rtsp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-12-23 02:29:11 +0000
committerGuy Harris <guy@alum.mit.edu>2003-12-23 02:29:11 +0000
commit75d6b95de1778ddcb3e8d183562ef439a865c6e5 (patch)
treecdc154f07a7436b3bf4746356664d104800adad8 /packet-rtsp.c
parentf75e257cbd0475c54d2e744b1ed577e73771176f (diff)
Not all headers in HTTP, RTSP, SIP, etc. are entity headers; rename some
files, routines, data structures, etc.. svn path=/trunk/; revision=9428
Diffstat (limited to 'packet-rtsp.c')
-rw-r--r--packet-rtsp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-rtsp.c b/packet-rtsp.c
index 62942e1a26..868737ae1c 100644
--- a/packet-rtsp.c
+++ b/packet-rtsp.c
@@ -4,7 +4,7 @@
* Jason Lango <jal@netapp.com>
* Liberally copied from packet-http.c, by Guy Harris <guy@alum.mit.edu>
*
- * $Id: packet-rtsp.c,v 1.56 2003/12/23 01:25:23 guy Exp $
+ * $Id: packet-rtsp.c,v 1.57 2003/12/23 02:29:11 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -35,7 +35,7 @@
#include <glib.h>
#include <epan/packet.h>
-#include "rreh.h"
+#include "req_resp_hdrs.h"
#include "packet-rtp.h"
#include "packet-rtcp.h"
#include <epan/conversation.h>
@@ -507,8 +507,8 @@ dissect_rtspmessage(tvbuff_t *tvb, int offset, packet_info *pinfo,
* and do body desegmentation if we've been told to and
* we find a Content-Length header.
*/
- if (!rreh_do_reassembly(tvb, pinfo, rtsp_desegment_headers,
- rtsp_desegment_body)) {
+ if (!req_resp_hdrs_do_reassembly(tvb, pinfo,
+ rtsp_desegment_headers, rtsp_desegment_body)) {
/*
* More data needed for desegmentation.
*/
@@ -688,7 +688,7 @@ dissect_rtspmessage(tvbuff_t *tvb, int offset, packet_info *pinfo,
* is SDP, dissect the payload as SDP.
*
* XXX - we should just do the same
- * sort of entity header processing
+ * sort of header processing
* that HTTP does, and use the
* "media_type" dissector table on
* the content type.