aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-02-20 08:24:52 +0000
committerGuy Harris <guy@alum.mit.edu>2002-02-20 08:24:52 +0000
commit2c0ceea42f3abd30162c3e83960606e6c6d912e9 (patch)
tree32434f9212ec87a7fbc88920f76950146a6c291b /epan
parentcd44c487d43c41c7d66e93cd4ee81e53b495af59 (diff)
downloadwireshark-2c0ceea42f3abd30162c3e83960606e6c6d912e9.tar.gz
wireshark-2c0ceea42f3abd30162c3e83960606e6c6d912e9.tar.bz2
wireshark-2c0ceea42f3abd30162c3e83960606e6c6d912e9.zip
Export "conversation_set_dissector()" in the plugin API table.
svn path=/trunk/; revision=4760
Diffstat (limited to 'epan')
-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;