aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/epan.c')
-rw-r--r--epan/epan.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/epan/epan.c b/epan/epan.c
index e7df854334..048695b51a 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -117,8 +117,7 @@ epan_init(void (*register_all_protocols_func)(register_cb cb, gpointer client_da
void
epan_cleanup(void)
{
- se_free_all();
- expert_cleanup();
+ cleanup_dissection();
dfilter_cleanup();
proto_cleanup();
prefs_cleanup();
@@ -139,11 +138,23 @@ epan_conversation_init(void)
}
void
+epan_conversation_cleanup(void)
+{
+ conversation_cleanup();
+}
+
+void
epan_circuit_init(void)
{
circuit_init();
}
+void
+epan_circuit_cleanup(void)
+{
+ circuit_cleanup();
+}
+
epan_dissect_t*
epan_dissect_init(epan_dissect_t *edt, gboolean create_proto_tree, gboolean proto_tree_visible)
{