aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.c
diff options
context:
space:
mode:
authorTomas Kukosa <tomas.kukosa@siemens.com>2005-12-06 11:45:55 +0000
committerTomas Kukosa <tomas.kukosa@siemens.com>2005-12-06 11:45:55 +0000
commita5bfb48c2f4a3081115018932877f86fb6b01ff3 (patch)
treefcbe2ba42190e9e170f5ad9c4ff7ebab64d19b99 /epan/epan.c
parenta3ed89556a77fae53dbe1634e4e8f0b265a93092 (diff)
OBJECT IDENTIFIER name resolution moved to oid_resolv.c
svn path=/trunk/; revision=16699
Diffstat (limited to 'epan/epan.c')
-rw-r--r--epan/epan.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/epan.c b/epan/epan.c
index 4944e312de..53022a305e 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -21,6 +21,7 @@
#include "column-utils.h"
#include "tap.h"
#include "addr_resolv.h"
+#include "oid_resolv.h"
#include "emem.h"
#include "expert.h"
@@ -61,6 +62,7 @@ epan_init(const char *plugin_dir, void (*register_all_protocols)(void),
report_read_failure_func = report_read_failure;
except_init();
tvbuff_init();
+ oid_resolv_init();
tap_init();
proto_init(plugin_dir,register_all_protocols,register_all_handoffs);
packet_init();
@@ -77,6 +79,7 @@ epan_cleanup(void)
dfilter_cleanup();
proto_cleanup();
packet_cleanup();
+ oid_resolv_cleanup();
tvbuff_cleanup();
except_deinit();
host_name_lookup_cleanup();