diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-06-18 02:18:27 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-06-18 02:18:27 +0000 |
commit | 84123931970a8a0f1af281e7351eadabba3c0908 (patch) | |
tree | 90c18fd2b2f7ddb3e9eac08059e59c3e0068f743 /packet-hsrp.c | |
parent | b9222c0011e362d2ba9895af4eaef04a3d72c8c6 (diff) | |
download | wireshark-84123931970a8a0f1af281e7351eadabba3c0908.tar.gz wireshark-84123931970a8a0f1af281e7351eadabba3c0908.tar.bz2 wireshark-84123931970a8a0f1af281e7351eadabba3c0908.zip |
From Joerg Mayer: explicitly fill in all members of a
"header_field_info" structure, including the ones that are later set by
the routines to register fields.
svn path=/trunk/; revision=3561
Diffstat (limited to 'packet-hsrp.c')
-rw-r--r-- | packet-hsrp.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/packet-hsrp.c b/packet-hsrp.c index 9e6f1cbbd4..c4c32c0569 100644 --- a/packet-hsrp.c +++ b/packet-hsrp.c @@ -4,7 +4,7 @@ * * Heikki Vatiainen <hessu@cs.tut.fi> * - * $Id: packet-hsrp.c,v 1.16 2001/01/22 03:33:45 guy Exp $ + * $Id: packet-hsrp.c,v 1.17 2001/06/18 02:17:46 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -178,52 +178,52 @@ void proto_register_hsrp(void) { &hf_hsrp_version, { "Version", "hsrp.version", FT_UINT8, BASE_DEC, NULL, 0x0, - "The version of the HSRP messages"}}, + "The version of the HSRP messages", HFILL }}, { &hf_hsrp_opcode, { "Op Code", "hsrp.opcode", FT_UINT8, BASE_DEC, VALS(hsrp_opcode_vals), 0x0, - "The type of message contained in this packet" }}, + "The type of message contained in this packet", HFILL }}, { &hf_hsrp_state, { "State", "hsrp.state", FT_UINT8, BASE_DEC, VALS(hsrp_state_vals), 0x0, - "The current state of the router sending the message" }}, + "The current state of the router sending the message", HFILL }}, { &hf_hsrp_hellotime, { "Hellotime", "hsrp.hellotime", FT_UINT8, BASE_DEC, NULL, 0x0, - "The approximate period between the Hello messages that the router sends" }}, + "The approximate period between the Hello messages that the router sends", HFILL }}, { &hf_hsrp_holdtime, { "Holdtime", "hsrp.holdtime", FT_UINT8, BASE_DEC, NULL, 0x0, - "Time that the current Hello message should be considered valid" }}, + "Time that the current Hello message should be considered valid", HFILL }}, { &hf_hsrp_priority, { "Priority", "hsrp.priority", FT_UINT8, BASE_DEC, NULL, 0x0, - "Used to elect the active and standby routers. Numerically higher priority wins vote" }}, + "Used to elect the active and standby routers. Numerically higher priority wins vote", HFILL }}, { &hf_hsrp_group, { "Group", "hsrp.group", FT_UINT8, BASE_DEC, NULL, 0x0, - "This field identifies the standby group" }}, + "This field identifies the standby group", HFILL }}, { &hf_hsrp_reserved, { "Reserved", "hsrp.reserved", FT_UINT8, BASE_DEC, NULL, 0x0, - "Reserved" }}, + "Reserved", HFILL }}, { &hf_hsrp_auth_data, { "Authentication Data", "hsrp.auth_data", FT_STRING, 0, NULL, 0x0, - "Contains a clear-text 8 character reused password" }}, + "Contains a clear-text 8 character reused password", HFILL }}, { &hf_hsrp_virt_ip_addr, { "Virtual IP Address", "hsrp.virt_ip", FT_IPv4, 0, NULL, 0x0, - "The virtual IP address used by this group" }}, + "The virtual IP address used by this group", HFILL }}, }; |