aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/docsis/packet-rngrsp.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-rngrsp.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-rngrsp.c')
-rw-r--r--plugins/docsis/packet-rngrsp.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/plugins/docsis/packet-rngrsp.c b/plugins/docsis/packet-rngrsp.c
index d2687f9707..eee62a5285 100644
--- a/plugins/docsis/packet-rngrsp.c
+++ b/plugins/docsis/packet-rngrsp.c
@@ -211,52 +211,52 @@ proto_register_docsis_rngrsp (void)
/* Setup list of header fields See Section 1.6.1 for details*/
static hf_register_info hf[] = {
{&hf_docsis_rngrsp,
- {"RNG-RSP Message", "docsis.rngrsp",
+ {"RNG-RSP Message", "docsis_rngrsp",
FT_BYTES, BASE_HEX, NULL, 0x0,
"Ranging Response Message", HFILL}
},
{&hf_docsis_rngrsp_sid,
- {"Service Identifier", "docsis.rngrsp.sid",
+ {"Service Identifier", "docsis_rngrsp.sid",
FT_UINT16, BASE_DEC, NULL, 0x0,
"Service Identifier", HFILL}
},
{&hf_docsis_rngrsp_upstream_chid,
- {"Upstream Channel ID", "docsis.rngrsp.upchid",
+ {"Upstream Channel ID", "docsis_rngrsp.upchid",
FT_UINT8, BASE_DEC, NULL, 0x0,
"Upstream Channel ID", HFILL}
},
{&hf_docsis_rngrsp_timing_adj,
- {"Timing Adjust (6.25us/64)", "docsis.rngrsp.timingadj",
+ {"Timing Adjust (6.25us/64)", "docsis_rngrsp.timingadj",
FT_INT32, BASE_DEC, NULL, 0x0,
"Timing Adjust", HFILL}
},
{&hf_docsis_rngrsp_power_adj,
- {"Power Level Adjust (0.25dB units)", "docsis.rngrsp.poweradj",
+ {"Power Level Adjust (0.25dB units)", "docsis_rngrsp.poweradj",
FT_INT8, BASE_DEC, NULL, 0x0,
"Power Level Adjust", HFILL}
},
{&hf_docsis_rngrsp_freq_adj,
- {"Offset Freq Adjust (Hz)", "docsis.rngrsp.freqadj",
+ {"Offset Freq Adjust (Hz)", "docsis_rngrsp.freqadj",
FT_INT16, BASE_DEC, NULL, 0x0,
"Frequency Adjust", HFILL}
},
{&hf_docsis_rngrsp_xmit_eq_adj,
- {"Transmit Equalisation Adjust", "docsis.rngrsp.xmit_eq_adj",
+ {"Transmit Equalisation Adjust", "docsis_rngrsp.xmit_eq_adj",
FT_BYTES, BASE_HEX, NULL, 0x0,
"Timing Equalisation Adjust", HFILL}
},
{&hf_docsis_rngrsp_ranging_status,
- {"Ranging Status", "docsis.rngrsp.rng_stat",
+ {"Ranging Status", "docsis_rngrsp.rng_stat",
FT_UINT8, BASE_DEC, VALS (rng_stat_vals), 0x0,
"Ranging Status", HFILL}
},
{&hf_docsis_rngrsp_down_freq_over,
- {"Downstream Frequency Override (Hz)", "docsis.rngrsp.freq_over",
+ {"Downstream Frequency Override (Hz)", "docsis_rngrsp.freq_over",
FT_UINT32, BASE_DEC, NULL, 0x0,
"Downstream Frequency Override", HFILL}
},
{&hf_docsis_rngrsp_upstream_ch_over,
- {"Upstream Channel ID Override", "docsis.rngrsp.chid_override",
+ {"Upstream Channel ID Override", "docsis_rngrsp.chid_override",
FT_UINT8, BASE_DEC, NULL, 0x0,
"Upstream Channel ID Override", HFILL}
},