diff options
author | Gerald Combs <gerald@wireshark.org> | 2007-11-28 22:56:27 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2007-11-28 22:56:27 +0000 |
commit | 70510e21c898c683b0da3fadda547b7403f72d49 (patch) | |
tree | 058d5f79642992ebd3633f35794ee98b50e20b0f /plugins/wimax/msg_aas_beam.c | |
parent | b436aeaf5fa8d5f01d543b8a6a907acba1a93dbe (diff) | |
download | wireshark-70510e21c898c683b0da3fadda547b7403f72d49.tar.gz wireshark-70510e21c898c683b0da3fadda547b7403f72d49.tar.bz2 wireshark-70510e21c898c683b0da3fadda547b7403f72d49.zip |
Change each filter prefix to match the protocol name ("wmx"). Add a
"wmx" prefix to each sub-protocol. "wmx"-ize the preferences and
dissector registration.
svn path=/trunk/; revision=23660
Diffstat (limited to 'plugins/wimax/msg_aas_beam.c')
-rw-r--r-- | plugins/wimax/msg_aas_beam.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/plugins/wimax/msg_aas_beam.c b/plugins/wimax/msg_aas_beam.c index adbccb3cdb..70ca17f5f6 100644 --- a/plugins/wimax/msg_aas_beam.c +++ b/plugins/wimax/msg_aas_beam.c @@ -111,21 +111,21 @@ static hf_register_info hf_aas_beam[] = { &hf_aas_beam_message_type, { - "MAC Management Message Type", "wimax.macmgtmsgtype.aas_beam", + "MAC Management Message Type", "wmx.macmgtmsgtype.aas_beam", FT_UINT8, BASE_DEC, NULL, 0x0, "", HFILL } }, { &hf_aas_beam_select_index, { - "AAS Beam Index", "wimax.aas_beam.aas_beam_index", + "AAS Beam Index", "wmx.aas_beam.aas_beam_index", FT_UINT8, BASE_DEC, NULL, AAS_BEAM_SELECT_AAS_BEAM_INDEX_MASK, "", HFILL } }, { &hf_aas_beam_beam_bit_mask, { - "Beam Bit Mask", "wimax.aas_beam.beam_bit_mask", + "Beam Bit Mask", "wmx.aas_beam.beam_bit_mask", FT_UINT8, BASE_HEX, NULL, AAS_BEAM_BEAM_BIT_MASK_MASK, "", HFILL } }, @@ -133,63 +133,63 @@ static hf_register_info hf_aas_beam[] = { &hf_aas_beam_cinr_value, { - "CINR Mean Value", "wimax.aas_beam.cinr_mean_value", + "CINR Mean Value", "wmx.aas_beam.cinr_mean_value", FT_UINT8, BASE_DEC, NULL, 0x0, "", HFILL } }, { &hf_aas_beam_feedback_request_number, { - "Feedback Request Number", "wimax.aas_beam.feedback_request_number", + "Feedback Request Number", "wmx.aas_beam.feedback_request_number", FT_UINT8, BASE_DEC, NULL, AAS_BEAM_FEEDBACK_REQUEST_NUMBER_MASK, "", HFILL } }, { &hf_aas_beam_frame_number, { - "Frame Number", "wimax.aas_beam.frame_number", + "Frame Number", "wmx.aas_beam.frame_number", FT_UINT8, BASE_DEC, NULL, 0x0, "", HFILL } }, { &hf_aas_beam_freq_value_im, { - "Frequency Value (imaginary part)", "wimax.aas_beam.freq_value_im", + "Frequency Value (imaginary part)", "wmx.aas_beam.freq_value_im", FT_UINT8, BASE_DEC, NULL, 0x0, "", HFILL } }, { &hf_aas_beam_freq_value_re, { - "Frequency Value (real part)", "wimax.aas_beam.freq_value_re", + "Frequency Value (real part)", "wmx.aas_beam.freq_value_re", FT_UINT8, BASE_DEC, NULL, 0x0, "", HFILL } }, { &hf_aas_beam_measurement_report_type, { - "Measurement Report Type", "wimax.aas_beam.measurement_report_type", + "Measurement Report Type", "wmx.aas_beam.measurement_report_type", FT_UINT8, BASE_DEC, VALS(vals_report_types), AAS_BEAM_MEASUREMENT_REPORT_TYPE_MASK, "", HFILL } }, { &hf_aas_beam_select_reserved, { - "Reserved", "wimax.aas_beam.reserved", + "Reserved", "wmx.aas_beam.reserved", FT_UINT8, BASE_HEX, NULL, AAS_BEAM_SELECT_RESERVED_MASK, "", HFILL } }, { &hf_aas_beam_resolution_parameter, { - "Resolution Parameter", "wimax.aas_beam.resolution_parameter", + "Resolution Parameter", "wmx.aas_beam.resolution_parameter", FT_UINT8, BASE_DEC, VALS(vals_resolution_parameter), AAS_BEAM_RESOLUTION_PARAMETER_MASK, "", HFILL } }, { &hf_aas_beam_rssi_value, { - "RSSI Mean Value", "wimax.aas_beam.rssi_mean_value", + "RSSI Mean Value", "wmx.aas_beam.rssi_mean_value", FT_UINT8, BASE_DEC, NULL, 0x0, "", HFILL } }, @@ -197,7 +197,7 @@ static hf_register_info hf_aas_beam[] = { &hf_aas_beam_unknown_type, { - "Unknown TLV type", "wimax.aas_beam.unknown_type", + "Unknown TLV type", "wmx.aas_beam.unknown_type", FT_BYTES, BASE_HEX, NULL, 0x0, "", HFILL } } |