aboutsummaryrefslogtreecommitdiffstats
path: root/packet.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2000-09-27 04:55:05 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2000-09-27 04:55:05 +0000
commit83ec54675c19f25cfbb2e8a8863c6ee2191d8b0c (patch)
tree35d39e43d20aca160b96d8a85ddc2b80e4646f67 /packet.c
parentf881e13932e0ba390c26cce15d1334b2154a8062 (diff)
First step in moving core Ethereal routines to libepan.
svn path=/trunk/; revision=2458
Diffstat (limited to 'packet.c')
-rw-r--r--packet.c23
1 files changed, 1 insertions, 22 deletions
diff --git a/packet.c b/packet.c
index a5b0cf8282..29c27e8569 100644
--- a/packet.c
+++ b/packet.c
@@ -1,7 +1,7 @@
/* packet.c
* Routines for packet disassembly
*
- * $Id: packet.c,v 1.110 2000/09/23 05:58:17 guy Exp $
+ * $Id: packet.c,v 1.111 2000/09/27 04:54:29 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -952,27 +952,6 @@ void blank_packetinfo(void)
pi.p2p_dir = P2P_DIR_UNKNOWN;
}
-/* Do all one-time initialization. */
-void
-dissect_init(void)
-{
- except_init();
- tvbuff_init();
- proto_init();
- dfilter_init();
-#ifdef HAVE_PLUGINS
- init_plugins();
-#endif
-}
-
-void
-dissect_cleanup(void)
-{
- dfilter_cleanup();
- proto_cleanup();
- tvbuff_cleanup();
- except_deinit();
-}
/* Allow protocols to register "init" routines, which are called before
we make a pass through a capture file and dissect all its packets