diff options
author | Laurent Deniel <laurent.deniel@free.fr> | 1999-10-11 17:05:49 +0000 |
---|---|---|
committer | Laurent Deniel <laurent.deniel@free.fr> | 1999-10-11 17:05:49 +0000 |
commit | 2e08b800b4e568a1f401441ee80153d566d532dc (patch) | |
tree | a1f5edd83ac9f6dcdb2b88ac484ed44d9771a1b9 /proto.h | |
parent | c6d6deee3cf80aafc7eba03df304c0b405341aef (diff) | |
download | wireshark-2e08b800b4e568a1f401441ee80153d566d532dc.tar.gz wireshark-2e08b800b4e568a1f401441ee80153d566d532dc.tar.bz2 wireshark-2e08b800b4e568a1f401441ee80153d566d532dc.zip |
- add handling of FT_IPv6 variables
there is still some work to do in resolv.c (get_host_ipaddr6)
- add display filters of this kind in packet-ipv6.c just
for testing (display filtering is incomplete)
svn path=/trunk/; revision=808
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,7 +1,7 @@ /* proto.h * Definitions for protocol display * - * $Id: proto.h,v 1.14 1999/10/11 14:58:04 gram Exp $ + * $Id: proto.h,v 1.15 1999/10/11 17:02:08 deniel Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -110,6 +110,7 @@ typedef struct field_info { gchar *string; guint8 *bytes; guint8 ether[6]; + guint8 ipv6[16]; } value; } field_info; |