diff options
author | Ed Warnicke <hagbard@physics.rutgers.edu> | 2001-04-01 04:11:51 +0000 |
---|---|---|
committer | Ed Warnicke <hagbard@physics.rutgers.edu> | 2001-04-01 04:11:51 +0000 |
commit | 20eee44b702dd401514522859fa29c24ddd127e1 (patch) | |
tree | e7a8012459c819bc62902b75035b5cb7b070409a /epan/epan.c | |
parent | 5d0c2134484af9d78b75b4ddc27014f74e48a1b4 (diff) | |
download | wireshark-20eee44b702dd401514522859fa29c24ddd127e1.tar.gz wireshark-20eee44b702dd401514522859fa29c24ddd127e1.tar.bz2 wireshark-20eee44b702dd401514522859fa29c24ddd127e1.zip |
Moved the frame_data structures and functions from packet.{h,c} to
frame_data{h,c}. Added a frame_data_init to be called by epan_init.
svn path=/trunk/; revision=3223
Diffstat (limited to 'epan/epan.c')
-rw-r--r-- | epan/epan.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/epan.c b/epan/epan.c index d18f40eccf..75ae31a463 100644 --- a/epan/epan.c +++ b/epan/epan.c @@ -1,6 +1,6 @@ /* epan.h * - * $Id: epan.c,v 1.7 2001/03/23 14:44:01 jfoster Exp $ + * $Id: epan.c,v 1.8 2001/04/01 04:11:50 hagbard Exp $ * * Ethereal Protocol Analyzer Library * @@ -47,6 +47,7 @@ epan_init(const char *plugin_dir) except_init(); tvbuff_init(); packet_init(); + frame_data_init(); proto_init(plugin_dir); dfilter_init(); } @@ -57,6 +58,7 @@ epan_cleanup(void) dfilter_cleanup(); proto_cleanup(); packet_cleanup(); + frame_data_cleanup(); tvbuff_cleanup(); except_deinit(); } |