aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-openflow_v5.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-openflow_v5.c')
-rw-r--r--epan/dissectors/packet-openflow_v5.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/epan/dissectors/packet-openflow_v5.c b/epan/dissectors/packet-openflow_v5.c
index 7e12a42eab..b9a4e5a04b 100644
--- a/epan/dissectors/packet-openflow_v5.c
+++ b/epan/dissectors/packet-openflow_v5.c
@@ -32,6 +32,7 @@
#include <epan/ipproto.h>
void proto_register_openflow_v5(void);
+void proto_reg_handoff_openflow_v5(void);
static dissector_handle_t eth_withoutfcs_handle;
@@ -9818,8 +9819,6 @@ proto_register_openflow_v5(void)
register_dissector("openflow_v5", dissect_openflow_v5, proto_openflow_v5);
- eth_withoutfcs_handle = find_dissector("eth_withoutfcs");
-
/* Required function calls to register the header fields and subtrees */
proto_register_field_array(proto_openflow_v5, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
@@ -9827,6 +9826,12 @@ proto_register_openflow_v5(void)
expert_register_field_array(expert_openflow_v5, ei, array_length(ei));
}
+void
+proto_reg_handoff_openflow_v5(void)
+{
+ eth_withoutfcs_handle = find_dissector_add_dependency("eth_withoutfcs", proto_openflow_v5);
+}
+
/*
* Editor modelines - http://www.wireshark.org/tools/modelines.html
*