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-ipv6.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-ipv6.h')
-rw-r--r-- | packet-ipv6.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ipv6.h b/packet-ipv6.h index 968e11e297..adb91b595c 100644 --- a/packet-ipv6.h +++ b/packet-ipv6.h @@ -1,7 +1,7 @@ /* packet-ipv6.h * Definitions for IPv6 packet disassembly * - * $Id: packet-ipv6.h,v 1.19 2001/04/01 07:06:22 hagbard Exp $ + * $Id: packet-ipv6.h,v 1.20 2001/04/23 03:37:31 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -30,7 +30,7 @@ #include "ipv6-utils.h" -void dissect_ipv6(const u_char *, int, frame_data *, proto_tree *); +void dissect_ipv6(tvbuff_t *, packet_info *, proto_tree *); #define INET6_ADDRSTRLEN 46 |