aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/docsis/packet-vendor.c
diff options
context:
space:
mode:
authorRichard van der Hoff <richardv@mxtelecom.com>2007-10-07 23:46:44 +0000
committerRichard van der Hoff <richardv@mxtelecom.com>2007-10-07 23:46:44 +0000
commit4d2920314d4fccae47d2d0c63cf234d3320a2bcd (patch)
tree9cea3956d2210305bdbe9395b178f18340d21f45 /plugins/docsis/packet-vendor.c
parentcf9760900c9098a06b3c9b7ab31d57f2578eed4f (diff)
From Chris Maynard <christopher.maynard@gtech.com>:
With the exception of docsis's packet-tlv.c file, these are all simple problems with the prefix not exactly set to PROTOABBREV. For example, for packet-bpkmattr.c, the field names are prefixed with "docsis.bpkmattr." instead of "docsis_bpkmattr.". packet-tlv.c had one mis-named field, namely "docsis.cos.sid". It has been changed to "docsis_tlv.cos.sid" in the patch to be attached, which includes patches for 29 files in the plugins/docsis/ directory ... svn path=/trunk/; revision=23088
Diffstat (limited to 'plugins/docsis/packet-vendor.c')
-rw-r--r--plugins/docsis/packet-vendor.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/docsis/packet-vendor.c b/plugins/docsis/packet-vendor.c
index 00b157ece3..6c6d96ac8c 100644
--- a/plugins/docsis/packet-vendor.c
+++ b/plugins/docsis/packet-vendor.c
@@ -238,42 +238,42 @@ proto_register_docsis_vsif (void)
/* Setup list of header fields See Section 1.6.1 for details*/
static hf_register_info hf[] = {
{&hf_docsis_vsif,
- {"VSIF Encodings", "docsis.vsif",
+ {"VSIF Encodings", "docsis_vsif",
FT_BYTES, BASE_HEX, NULL, 0x0,
"Vendor Specific Encodings", HFILL}
},
{&hf_docsis_vsif_vendorid,
- {"Vendor Id", "docsis.vsif.vendorid",
+ {"Vendor Id", "docsis_vsif.vendorid",
FT_UINT24, BASE_HEX, VALS(vendorid_vals), 0x0,
"Vendor Identifier", HFILL}
},
{&hf_docsis_vsif_vendor_unknown,
- {"VSIF Encodings", "docsis.vsif.unknown",
+ {"VSIF Encodings", "docsis_vsif.unknown",
FT_BYTES, BASE_HEX, NULL, 0x0,
"Unknown Vendor", HFILL}
},
{&hf_docsis_vsif_cisco_numphones,
- {"Number of phone lines", "docsis.vsif.cisco.numphones",
+ {"Number of phone lines", "docsis_vsif.cisco.numphones",
FT_UINT8, BASE_DEC, NULL, 0x0,
"Number of phone lines", HFILL}
},
{&hf_docsis_vsif_cisco_ipprec,
- {"IP Precedence Encodings", "docsis.vsif.cisco.ipprec",
+ {"IP Precedence Encodings", "docsis_vsif.cisco.ipprec",
FT_BYTES, BASE_HEX, NULL, 0x0,
"IP Precedence Encodings", HFILL}
},
{&hf_docsis_vsif_cisco_ipprec_val,
- {"IP Precedence Value", "docsis.vsif.cisco.ipprec.value",
+ {"IP Precedence Value", "docsis_vsif.cisco.ipprec.value",
FT_UINT8, BASE_DEC, NULL, 0x0,
"IP Precedence Value", HFILL}
},
{&hf_docsis_vsif_cisco_ipprec_bw,
- {"IP Precedence Bandwidth", "docsis.vsif.cisco.ipprec.bw",
+ {"IP Precedence Bandwidth", "docsis_vsif.cisco.ipprec.bw",
FT_UINT8, BASE_DEC, NULL, 0x0,
"IP Precedence Bandwidth", HFILL}
},
{&hf_docsis_vsif_cisco_config_file,
- {"IOS Config File", "docsis.vsif.cisco.iosfile",
+ {"IOS Config File", "docsis_vsif.cisco.iosfile",
FT_STRING, BASE_DEC, NULL, 0x0,
"IOS Config File", HFILL}
},