summaryrefslogtreecommitdiff
path: root/packet.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-07-07 00:34:58 +0000
committerGuy Harris <guy@alum.mit.edu>1999-07-07 00:34:58 +0000
commitb547681d563bdaeece9f62ae43da5ab2ae93d953 (patch)
treec073c6e4a3438a5dcc8ccfe3ec9c26b292fadb63 /packet.h
parentbec7c4afe520dde06fdf82050ec9ac058f7335bd (diff)
downloadwireshark-b547681d563bdaeece9f62ae43da5ab2ae93d953.tar.gz
Add support for RTSP (RFC 2326) over TCP, and SDP (RFC 2327) inside
RTSP, from Jason Lango <jal@netapp.com>. svn path=/trunk/; revision=340
Diffstat (limited to 'packet.h')
-rw-r--r--packet.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/packet.h b/packet.h
index d6f20b710c..2b7955f1e3 100644
--- a/packet.h
+++ b/packet.h
@@ -1,7 +1,7 @@
/* packet.h
* Definitions for packet disassembly structures and routines
*
- * $Id: packet.h,v 1.63 1999/07/01 04:04:38 sharpe Exp $
+ * $Id: packet.h,v 1.64 1999/07/07 00:34:58 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -273,6 +273,8 @@ enum {
ETT_RSVP_ADSPEC_SUBTREE1,
ETT_RSVP_ADSPEC_SUBTREE2,
ETT_RSVP_ADSPEC_SUBTREE3,
+ ETT_RTSP,
+ ETT_SDP,
NUM_TREE_TYPES /* last item number plus one */
};
@@ -417,6 +419,8 @@ void dissect_pppoes(const u_char *, int, frame_data *, proto_tree *);
void dissect_isakmp(const u_char *, int, frame_data *, proto_tree *);
void dissect_rip(const u_char *, int, frame_data *, proto_tree *);
void dissect_rsvp(const u_char *, int, frame_data *, proto_tree *);
+void dissect_rtsp(const u_char *, int, frame_data *, proto_tree *);
+void dissect_sdp(const u_char *, int, frame_data *, proto_tree *);
void dissect_snmp(const u_char *, int, frame_data *, proto_tree *);
void dissect_tcp(const u_char *, int, frame_data *, proto_tree *);
void dissect_tftp(const u_char *, int, frame_data *, proto_tree *);