summaryrefslogtreecommitdiff
path: root/plugins/wimax/wimax_phy_attributes_decoder.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2007-11-28 22:56:27 +0000
committerGerald Combs <gerald@wireshark.org>2007-11-28 22:56:27 +0000
commit70510e21c898c683b0da3fadda547b7403f72d49 (patch)
tree058d5f79642992ebd3633f35794ee98b50e20b0f /plugins/wimax/wimax_phy_attributes_decoder.c
parentb436aeaf5fa8d5f01d543b8a6a907acba1a93dbe (diff)
downloadwireshark-70510e21c898c683b0da3fadda547b7403f72d49.tar.gz
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/wimax_phy_attributes_decoder.c')
-rw-r--r--plugins/wimax/wimax_phy_attributes_decoder.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/wimax/wimax_phy_attributes_decoder.c b/plugins/wimax/wimax_phy_attributes_decoder.c
index c54761db66..47a2622721 100644
--- a/plugins/wimax/wimax_phy_attributes_decoder.c
+++ b/plugins/wimax/wimax_phy_attributes_decoder.c
@@ -93,35 +93,35 @@ static hf_register_info hf[] =
{
{
&hf_phy_attributes_subchannelization_type,
- {"Subchannelization Type", "wimax.phy_attributes.subchannelization_type", FT_UINT8, BASE_DEC, VALS(vals_subchannel_types), 0x0, "", HFILL}
+ {"Subchannelization Type", "wmx.phy_attributes.subchannelization_type", FT_UINT8, BASE_DEC, VALS(vals_subchannel_types), 0x0, "", HFILL}
},
{
&hf_phy_attributes_permbase,
- {"Permbase", "wimax.phy_attributes.permbase", FT_UINT8, BASE_HEX, NULL, 0x0, "", HFILL}
+ {"Permbase", "wmx.phy_attributes.permbase", FT_UINT8, BASE_HEX, NULL, 0x0, "", HFILL}
},
{
&hf_phy_attributes_modulation_rate,
- {"Modulation Rate", "wimax.phy_attributes.modulation_rate", FT_UINT8, BASE_DEC, VALS(vals_modulation_rates), 0x0, "", HFILL}
+ {"Modulation Rate", "wmx.phy_attributes.modulation_rate", FT_UINT8, BASE_DEC, VALS(vals_modulation_rates), 0x0, "", HFILL}
},
{
&hf_phy_attributes_encoding_type,
- {"Encoding Type", "wimax.phy_attributes.encoding_type", FT_UINT8, BASE_DEC, VALS(vals_encoding_types), 0x0, "", HFILL}
+ {"Encoding Type", "wmx.phy_attributes.encoding_type", FT_UINT8, BASE_DEC, VALS(vals_encoding_types), 0x0, "", HFILL}
},
{
&hf_phy_attributes_num_repeat,
- {"numRepeat", "wimax.phy_attributes.num_repeat", FT_UINT8, BASE_DEC, NULL, 0x0, "", HFILL}
+ {"numRepeat", "wmx.phy_attributes.num_repeat", FT_UINT8, BASE_DEC, NULL, 0x0, "", HFILL}
},
{
&hf_phy_attributes_symbol_offset,
- {"Symbol Offset", "wimax.phy_attributes.symbol_offset", FT_UINT8, BASE_DEC, NULL, 0x0, "", HFILL}
+ {"Symbol Offset", "wmx.phy_attributes.symbol_offset", FT_UINT8, BASE_DEC, NULL, 0x0, "", HFILL}
},
{
&hf_phy_attributes_num_of_slots,
- {"Number Of Slots", "wimax.phy_attributes.num_of_slots", FT_UINT16, BASE_DEC, NULL, 0x0, "", HFILL}
+ {"Number Of Slots", "wmx.phy_attributes.num_of_slots", FT_UINT16, BASE_DEC, NULL, 0x0, "", HFILL}
},
{
&hf_phy_attributes_subchannel,
- {"Subchannel", "wimax.phy_attributes.subchannel", FT_UINT8, BASE_HEX, NULL, 0x0, "", HFILL}
+ {"Subchannel", "wmx.phy_attributes.subchannel", FT_UINT8, BASE_HEX, NULL, 0x0, "", HFILL}
}
};