aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-openflow_v4.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-openflow_v4.c')
-rw-r--r--epan/dissectors/packet-openflow_v4.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/epan/dissectors/packet-openflow_v4.c b/epan/dissectors/packet-openflow_v4.c
index cb525a7a0a..97efeb322e 100644
--- a/epan/dissectors/packet-openflow_v4.c
+++ b/epan/dissectors/packet-openflow_v4.c
@@ -32,6 +32,7 @@
#include <epan/ipproto.h>
void proto_register_openflow_v4(void);
+void proto_reg_handoff_openflow_v4(void);
static dissector_handle_t eth_withoutfcs_handle;
@@ -7866,8 +7867,6 @@ proto_register_openflow_v4(void)
register_dissector("openflow_v4", dissect_openflow_v4, proto_openflow_v4);
- eth_withoutfcs_handle = find_dissector("eth_withoutfcs");
-
/* Required function calls to register the header fields and subtrees */
proto_register_field_array(proto_openflow_v4, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
@@ -7875,6 +7874,12 @@ proto_register_openflow_v4(void)
expert_register_field_array(expert_openflow_v4, ei, array_length(ei));
}
+void
+proto_reg_handoff_openflow_v4(void)
+{
+ eth_withoutfcs_handle = find_dissector_add_dependency("eth_withoutfcs", proto_openflow_v4);
+}
+
/*
* Editor modelines - http://www.wireshark.org/tools/modelines.html
*