aboutsummaryrefslogtreecommitdiffstats
path: root/epan/plugins.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-02-20 08:24:52 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-02-20 08:24:52 +0000
commit34fbb3e91f7262eb2f6fac778cd097fa4b600b4b (patch)
tree32434f9212ec87a7fbc88920f76950146a6c291b /epan/plugins.c
parent3758fbd0783892ad7c9d0ca271323ea44f8e85ac (diff)
Export "conversation_set_dissector()" in the plugin API table.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4760 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/plugins.c')
-rw-r--r--epan/plugins.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/epan/plugins.c b/epan/plugins.c
index 507e0acf8c..f2ee2d3f34 100644
--- a/epan/plugins.c
+++ b/epan/plugins.c
@@ -1,7 +1,7 @@
/* plugins.c
* plugin routines
*
- * $Id: plugins.c,v 1.47 2002/02/02 03:42:17 guy Exp $
+ * $Id: plugins.c,v 1.48 2002/02/20 08:24:51 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -295,11 +295,14 @@ init_plugins(const char *plugin_dir)
patable.p_register_init_routine = register_init_routine;
patable.p_register_postseq_cleanup_routine = register_postseq_cleanup_routine;
- patable.p_conversation_new = conversation_new;
- patable.p_find_conversation = find_conversation;
+
patable.p_match_strval = match_strval;
patable.p_val_to_str = val_to_str;
+ patable.p_conversation_new = conversation_new;
+ patable.p_find_conversation = find_conversation;
+ patable.p_conversation_set_dissector = conversation_set_dissector;
+
patable.p_proto_register_protocol = proto_register_protocol;
patable.p_proto_register_field_array = proto_register_field_array;
patable.p_proto_register_subtree_array = proto_register_subtree_array;