aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2022-04-14 17:49:03 -0700
committerGerald Combs <gerald@wireshark.org>2022-04-19 22:25:32 +0000
commit87b0288b8d60387e12ee83786677fc3ce6edeeff (patch)
tree65f659a1f226d048c83662fc6125cd8b0fcf7d7e /epan/epan.c
parentf6061c4a3c92f79f0f9a557de718b16385a50874 (diff)
epan: Add the ability to add conversation filter protocols.
Convert our conversation protocols to a dynamic list and add add_conversation_filter_protocol(). Use it in the Falco Bridge plugin to add protocols with conversation filters.
Diffstat (limited to 'epan/epan.c')
-rw-r--r--epan/epan.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/epan.c b/epan/epan.c
index 0fe4adc588..23dba61e3d 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -302,6 +302,7 @@ epan_init(register_cb cb, gpointer client_data, gboolean load_plugins)
conversation_init();
capture_dissector_init();
reassembly_tables_init();
+ conversation_filters_init();
g_slist_foreach(epan_plugins, epan_plugin_init, NULL);
proto_init(epan_plugin_register_all_procotols, epan_plugin_register_all_handoffs, cb, client_data);
g_slist_foreach(epan_plugins, epan_plugin_register_all_tap_listeners, NULL);