aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/wimax/msg_res_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/wimax/msg_res_cmd.c')
-rw-r--r--plugins/wimax/msg_res_cmd.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/wimax/msg_res_cmd.c b/plugins/wimax/msg_res_cmd.c
index 2632bc9bc0..2573e86332 100644
--- a/plugins/wimax/msg_res_cmd.c
+++ b/plugins/wimax/msg_res_cmd.c
@@ -161,3 +161,12 @@ void proto_register_mac_mgmt_msg_res_cmd(void)
proto_register_field_array(proto_mac_mgmt_msg_res_cmd_decoder, hf_res_cmd, array_length(hf_res_cmd));
proto_register_subtree_array(ett_res_cmd, array_length(ett_res_cmd));
}
+
+void
+proto_reg_handoff_mac_mgmt_msg_res_cmd(void)
+{
+ dissector_handle_t handle;
+
+ handle = create_dissector_handle(dissect_mac_mgmt_msg_res_cmd_decoder, proto_mac_mgmt_msg_res_cmd_decoder);
+ dissector_add_uint("wmx.mgmtmsg", MAC_MGMT_MSG_RES_CMD, handle);
+}