diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-11-29 05:16:15 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-11-29 05:16:15 +0000 |
commit | d673500082461b67f57914dca6176447f73f6c27 (patch) | |
tree | 5469fa22c76501813519d37f54fc09a373e07c8c /packet-clip.c | |
parent | d6d2a9ccc99fadfb5a0fd6b1c9052bf6c2bcdb54 (diff) | |
download | wireshark-d673500082461b67f57914dca6176447f73f6c27.tar.gz wireshark-d673500082461b67f57914dca6176447f73f6c27.tar.bz2 wireshark-d673500082461b67f57914dca6176447f73f6c27.zip |
Wrap the dissect_fddi() call (with a 4th argument) with
dissect_fddi_not_bitswapped() and dissect_fddi_bitswapped(), both of which
use the standard 3-argument tvbuffified-dissector argument list.
Add a dissector table called "wtap_encap" which is used to call dissectors
from dissect_frame(). The switch() statement from this top-level dissector
is removed.
The link-layer dissectors register themselves with the "wtap_encap"
dissector table. The dissectors are now static where possible.
svn path=/trunk/; revision=2708
Diffstat (limited to 'packet-clip.c')
-rw-r--r-- | packet-clip.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packet-clip.c b/packet-clip.c index ced6962878..750bd576b3 100644 --- a/packet-clip.c +++ b/packet-clip.c @@ -1,7 +1,7 @@ /* packet-clip.c * Routines for clip packet disassembly * - * $Id: packet-clip.c,v 1.12 2000/11/19 08:53:56 guy Exp $ + * $Id: packet-clip.c,v 1.13 2000/11/29 05:16:15 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -48,7 +48,7 @@ capture_clip( const u_char *pd, packet_counts *ld ) { capture_ip(pd, 0, ld); } -void +static void dissect_clip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) { proto_tree *fh_tree; @@ -102,4 +102,5 @@ proto_reg_handoff_clip(void) * Get a handle for the IP dissector. */ ip_handle = find_dissector("ip"); + dissector_add("wtap_encap", WTAP_ENCAP_LINUX_ATM_CLIP, dissect_clip); } |