diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-01-15 20:11:10 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-01-15 20:11:10 +0000 |
commit | f4c930c8e228a759347c54b6532b20953b35d98c (patch) | |
tree | a3aae8282102b053074d271573f6d0765ea38c74 /packet-ipv6.h | |
parent | df6fa9cc908b127022c2beca8daca04fb1996cfd (diff) | |
download | wireshark-f4c930c8e228a759347c54b6532b20953b35d98c.tar.gz wireshark-f4c930c8e228a759347c54b6532b20953b35d98c.tar.bz2 wireshark-f4c930c8e228a759347c54b6532b20953b35d98c.zip |
From Martti Kuparinen: update the HMIPv6 support to match the latest
draft (draft-ietf-mobileip-hmipv6-05.txt).
svn path=/trunk/; revision=4546
Diffstat (limited to 'packet-ipv6.h')
-rw-r--r-- | packet-ipv6.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/packet-ipv6.h b/packet-ipv6.h index eb92c5ea4c..2cdcf43661 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.24 2001/09/04 21:04:52 guy Exp $ + * $Id: packet-ipv6.h,v 1.25 2002/01/15 20:11:10 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -458,11 +458,8 @@ struct nd_opt_route_info { /* route info */ struct nd_opt_map_info { /* HMIPv6 MAP option */ guint8 nd_opt_map_type; guint8 nd_opt_map_len; - guint8 nd_opt_map_distance; - guint8 nd_opt_map_preference; - guint8 nd_opt_map_prefixlen; + guint8 nd_opt_map_dist_and_pref; guint8 nd_opt_map_flags; - guint16 nd_opt_map_unused; guint32 nd_opt_map_lifetime; struct e_in6_addr nd_opt_map_address; }; @@ -472,6 +469,7 @@ struct nd_opt_map_info { /* HMIPv6 MAP option */ #define ND_OPT_MAP_FLAG_I 0x20 #define ND_OPT_MAP_FLAG_T 0x10 #define ND_OPT_MAP_FLAG_P 0x08 +#define ND_OPT_MAP_FLAG_V 0x04 /* * icmp6 node information |