diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-04-23 03:37:31 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-04-23 03:37:31 +0000 |
commit | 2bc2974c6e9b0e380912d7036a1b2b8ce0edb214 (patch) | |
tree | bf5339bf1e5133423026b0e8f2a4f995c378d749 /packet-ipsec.h | |
parent | ae84ef77de6187da2194e8437c166e80efa64ae2 (diff) | |
download | wireshark-2bc2974c6e9b0e380912d7036a1b2b8ce0edb214.tar.gz wireshark-2bc2974c6e9b0e380912d7036a1b2b8ce0edb214.tar.bz2 wireshark-2bc2974c6e9b0e380912d7036a1b2b8ce0edb214.zip |
Tvbuffification of the IPv6 and ICMPv6 dissectors, and some bug fixes
and an update to draft 7 of ICMPv6 name lookups, from Heikki Vatiainen.
Fix some formats in the ICMPv6 dissector to use %u, rather than %d, for
unsigned quantities.
Show various type and code values in ICMPv6 as decimal, not hexadecimal
(they're decimal in the RFCs).
svn path=/trunk/; revision=3360
Diffstat (limited to 'packet-ipsec.h')
-rw-r--r-- | packet-ipsec.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packet-ipsec.h b/packet-ipsec.h index e782853ed3..36100ac6ba 100644 --- a/packet-ipsec.h +++ b/packet-ipsec.h @@ -1,6 +1,6 @@ /* packet-ipsec.h * - * $Id: packet-ipsec.h,v 1.5 2001/02/28 06:37:29 guy Exp $ + * $Id: packet-ipsec.h,v 1.6 2001/04/23 03:37:31 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -25,6 +25,7 @@ #ifndef __PACKET_IPSEC_H__ #define __PACKET_IPSEC_H__ -int dissect_ah_old(const u_char *, int, frame_data *, proto_tree *); +int dissect_ah_header(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, + guint8 *nxt_p, proto_tree **next_tree_p); #endif |