diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-11-19 07:28:16 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-11-19 07:28:16 +0000 |
commit | 70641c27dd5aadad585eba262a8ed7425d855bdd (patch) | |
tree | 5b31cc8066d9160ae40bb4d2443bfff9cef02129 /packet.h | |
parent | f7cf81e4795669c0d4aec66c6af4198bbd8b8d44 (diff) | |
download | wireshark-70641c27dd5aadad585eba262a8ed7425d855bdd.tar.gz wireshark-70641c27dd5aadad585eba262a8ed7425d855bdd.tar.bz2 wireshark-70641c27dd5aadad585eba262a8ed7425d855bdd.zip |
Add support for SSCOP protocol; dissect signalling AAL packets using it.
It's in a file of its own, as I think there may be, or may have been
proposed, non-ATM uses of it as well.
svn path=/trunk/; revision=1064
Diffstat (limited to 'packet.h')
-rw-r--r-- | packet.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,7 +1,7 @@ /* packet.h * Definitions for packet disassembly structures and routines * - * $Id: packet.h,v 1.144 1999/11/17 21:58:32 guy Exp $ + * $Id: packet.h,v 1.145 1999/11/19 07:28:16 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -371,6 +371,7 @@ void dissect_sap(const u_char *, int, frame_data *, proto_tree *); void dissect_sdp(const u_char *, int, frame_data *, proto_tree *); void dissect_sna(const u_char *, int, frame_data *, proto_tree *); void dissect_snmp(const u_char *, int, frame_data *, proto_tree *); +void dissect_sscop(const u_char *, int, frame_data *, proto_tree *); void dissect_tcp(const u_char *, int, frame_data *, proto_tree *); void dissect_telnet(const u_char *, int, frame_data *, proto_tree *); void dissect_tftp(const u_char *, int, frame_data *, proto_tree *); |