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-bvlc.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-bvlc.c')
-rw-r--r-- | packet-bvlc.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/packet-bvlc.c b/packet-bvlc.c index 9527f3d7a4..5dd638f463 100644 --- a/packet-bvlc.c +++ b/packet-bvlc.c @@ -2,7 +2,7 @@ * Routines for BACnet/IP (BVLL, BVLC) dissection * Copyright 2001, Hartmut Mueller <hartmut@abmlinux.org>, FH Dortmund * - * $Id: packet-bvlc.c,v 1.3 2001/05/30 07:48:23 guy Exp $ + * $Id: packet-bvlc.c,v 1.4 2001/06/18 02:17:45 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -304,74 +304,74 @@ proto_register_bvlc(void) { &hf_bvlc_type, { "Type", "bvlc.type", FT_UINT8, BASE_HEX, NULL, 0, - "Type" } + "Type", HFILL } }, { &hf_bvlc_function, { "Function", "bvlc.function", FT_UINT8, BASE_HEX, NULL, 0, - "BLVC Function" } + "BLVC Function", HFILL } }, { &hf_bvlc_length, { "Length", "bvlc.length", FT_UINT16, BASE_DEC, NULL, 0, - "Length of BVLC" } + "Length of BVLC", HFILL } }, /* We should bitmask the result correctly when we have a * packet to dissect */ { &hf_bvlc_result, { "Result", "bvlc.result", FT_UINT16, BASE_HEX, NULL, 0xffff, - "Result Code" } + "Result Code", HFILL } }, { &hf_bvlc_bdt_ip, { "IP", "bvlc.bdt_ip", FT_IPv4, BASE_NONE, NULL, 0, - "BDT IP" } + "BDT IP", HFILL } }, { &hf_bvlc_bdt_port, { "Port", "bvlc.bdt_port", FT_UINT16, BASE_DEC, NULL, 0, - "BDT Port" } + "BDT Port", HFILL } }, { &hf_bvlc_bdt_mask, { "Mask", "bvlc.bdt_mask", FT_BYTES, BASE_HEX, NULL, 0, - "BDT Broadcast Distribution Mask" } + "BDT Broadcast Distribution Mask", HFILL } }, { &hf_bvlc_reg_ttl, { "TTL", "bvlc.reg_ttl", FT_UINT16, BASE_DEC, NULL, 0, - "Foreign Device Time To Live" } + "Foreign Device Time To Live", HFILL } }, { &hf_bvlc_fdt_ip, { "IP", "bvlc.fdt_ip", FT_IPv4, BASE_NONE, NULL, 0, - "FDT IP" } + "FDT IP", HFILL } }, { &hf_bvlc_fdt_port, { "Port", "bvlc.fdt_port", FT_UINT16, BASE_DEC, NULL, 0, - "FDT Port" } + "FDT Port", HFILL } }, { &hf_bvlc_fdt_ttl, { "TTL", "bvlc.fdt_ttl", FT_UINT16, BASE_DEC, NULL, 0, - "Foreign Device Time To Live" } + "Foreign Device Time To Live", HFILL } }, { &hf_bvlc_fdt_timeout, { "Timeout", "bvlc.fdt_timeout", FT_UINT16, BASE_DEC, NULL, 0, - "Foreign Device Timeout (seconds)" } + "Foreign Device Timeout (seconds)", HFILL } }, { &hf_bvlc_fwd_ip, { "IP", "bvlc.fwd_ip", FT_IPv4, BASE_NONE, NULL, 0, - "FWD IP" } + "FWD IP", HFILL } }, { &hf_bvlc_fwd_port, { "Port", "bvlc.fwd_port", FT_UINT16, BASE_DEC, NULL, 0, - "FWD Port" } + "FWD Port", HFILL } }, }; |