aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.h
diff options
context:
space:
mode:
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-09-06 18:25:23 +0000
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-09-06 18:25:23 +0000
commit0e5cef61be28b595269433c50b23ce71a24b9fd3 (patch)
tree3906bcb3782e7eeaccdf0142093b63c249a57593 /epan/epan.h
parentd6122ad4223c0616f3ac12b96f079f04cd83d3c4 (diff)
Split a bunch of init routines into init() and cleanup(). This allows us to free memory properly on shutdown.
This is an initial step. There's still some work to do. svn path=/trunk/; revision=29754
Diffstat (limited to 'epan/epan.h')
-rw-r--r--epan/epan.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/epan.h b/epan/epan.h
index 35c20c15ef..759d0fbd6f 100644
--- a/epan/epan.h
+++ b/epan/epan.h
@@ -53,6 +53,7 @@ void epan_cleanup(void);
* value indicating to which flow the packet belongs.
*/
void epan_conversation_init(void);
+void epan_conversation_cleanup(void);
/*
* Initialize the table of circuits. Circuits are identified by a
@@ -65,6 +66,7 @@ void epan_conversation_init(void);
* code.
*/
void epan_circuit_init(void);
+void epan_circuit_cleanup(void);
/* A client will create one epan_t for an entire dissection session.
* A single epan_t will be used to analyze the entire sequence of packets,