summaryrefslogtreecommitdiff
path: root/plugins/stats_tree/stats_tree_plugin.c
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2005-02-28 22:32:16 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2005-02-28 22:32:16 +0000
commit47cd961ac6b1adfd93f7480103f353352a9f85b6 (patch)
tree5a95eaa3dbeb5fa3f42099b525f37a5ae1b02067 /plugins/stats_tree/stats_tree_plugin.c
parentd018dcf6635c40c60894524343411d3d42ac62e8 (diff)
downloadwireshark-47cd961ac6b1adfd93f7480103f353352a9f85b6.tar.gz
add the http_stats_tree,
a replacement for the current http tap listeners and a tree for requested hosts/uris svn path=/trunk/; revision=13556
Diffstat (limited to 'plugins/stats_tree/stats_tree_plugin.c')
-rw-r--r--plugins/stats_tree/stats_tree_plugin.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/stats_tree/stats_tree_plugin.c b/plugins/stats_tree/stats_tree_plugin.c
index 0abc1c8042..6541dee5ad 100644
--- a/plugins/stats_tree/stats_tree_plugin.c
+++ b/plugins/stats_tree/stats_tree_plugin.c
@@ -34,6 +34,7 @@
#include <epan/stats_tree.h>
extern void register_pinfo_stat_trees(void);
+extern void register_http_stat_trees(void);
G_MODULE_EXPORT const gchar version[] = "0.0";
@@ -46,6 +47,7 @@ G_MODULE_EXPORT void plugin_init(plugin_address_table_t *pat _U_ ) {
G_MODULE_EXPORT void plugin_register_tap_listener(void)
{
register_pinfo_stat_trees();
+ register_http_stat_trees();
}
#endif