aboutsummaryrefslogtreecommitdiffstats
path: root/tap-stats_tree.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-19 09:29:41 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-19 09:29:41 +0000
commitf13dfe879ee91521554b70b7afb07a3bc0bd0ab8 (patch)
tree76e4a11481ef4c452fdb6528527c87a5b32d6631 /tap-stats_tree.c
parent2ac0b946c6867e28d30cd900af049771a633cf83 (diff)
Move the APIs for registering and processing "-z" command-line arguments
and "Statistics" menu items into "stat.h" and "stat.c", to separate them from the core tapping APIs. A tap could conceivably not register as a "-z" command-line argument or "Statistics" menu item, and a stat could conceivably not be implemented as a tap, and dissectors that implement tapping points don't need the UI-related stuff from "stat.h", they just want the tap-related stuff in <epan/tap.h>. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15427 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tap-stats_tree.c')
-rw-r--r--tap-stats_tree.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tap-stats_tree.c b/tap-stats_tree.c
index 9533ac533a..f126a38e82 100644
--- a/tap-stats_tree.c
+++ b/tap-stats_tree.c
@@ -31,6 +31,7 @@
#include <stdio.h>
#include <glib.h>
#include <epan/stats_tree_priv.h>
+#include "stat.h"
/* actually unused */
struct _st_node_pres {
@@ -113,7 +114,7 @@ void register_stats_tree_tap (gpointer k _U_, gpointer v, gpointer p _U_) {
cfg->pr = g_malloc(sizeof(tree_cfg_pres));
cfg->pr->init_string = g_strdup_printf("%s,tree",cfg->abbr);
- register_tap_listener_cmd_arg(cfg->pr->init_string, init_stats_tree);
+ register_stat_cmd_arg(cfg->pr->init_string, init_stats_tree);
}