summaryrefslogtreecommitdiff
path: root/plugins/wimax/msg_dsx_rvd.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/msg_dsx_rvd.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/msg_dsx_rvd.c')
-rw-r--r--plugins/wimax/msg_dsx_rvd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/wimax/msg_dsx_rvd.c b/plugins/wimax/msg_dsx_rvd.c
index a61cc90100..d2f76428f0 100644
--- a/plugins/wimax/msg_dsx_rvd.c
+++ b/plugins/wimax/msg_dsx_rvd.c
@@ -58,15 +58,15 @@ static hf_register_info hf_dsx_rvd[] =
{
{
&hf_dsx_rvd_message_type,
- {"MAC Management Message Type", "wimax.macmgtmsgtype.dsx_rvd", FT_UINT8, BASE_DEC, NULL, 0x0, "", HFILL}
+ {"MAC Management Message Type", "wmx.macmgtmsgtype.dsx_rvd", FT_UINT8, BASE_DEC, NULL, 0x0, "", HFILL}
},
{
&hf_dsx_rvd_confirmation_code,
- { "Confirmation code", "wimax.dsx_rvd.confirmation_code", FT_UINT8, BASE_HEX, NULL, 0x0, "", HFILL}
+ { "Confirmation code", "wmx.dsx_rvd.confirmation_code", FT_UINT8, BASE_HEX, NULL, 0x0, "", HFILL}
},
{
&hf_dsx_rvd_transaction_id,
- { "Transaction ID", "wimax.dsx_rvd.transaction_id", FT_UINT16, BASE_HEX, NULL, 0x0, "", HFILL}
+ { "Transaction ID", "wmx.dsx_rvd.transaction_id", FT_UINT16, BASE_HEX, NULL, 0x0, "", HFILL}
}
};
@@ -78,7 +78,7 @@ void proto_register_mac_mgmt_msg_dsx_rvd(void)
proto_mac_mgmt_msg_dsx_rvd_decoder = proto_register_protocol (
"WiMax DSX-RVD Message", /* name */
"WiMax DSX-RVD (dsx)", /* short name */
- "dsx" /* abbrev */
+ "wmx.dsx" /* abbrev */
);
proto_register_field_array(proto_mac_mgmt_msg_dsx_rvd_decoder, hf_dsx_rvd, array_length(hf_dsx_rvd));