aboutsummaryrefslogtreecommitdiffstats
path: root/ui/cli/tap-camelcounter.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-11-14 10:31:04 -0800
committerGuy Harris <guy@alum.mit.edu>2014-11-14 18:31:34 +0000
commit7390516f61e64568e8cbdee64dbb6b908bbc2676 (patch)
treefe3df59e8bbc67667af55349680d610176e2fddf /ui/cli/tap-camelcounter.c
parent09f0d2c6c4ac65f6e05c0943c4fb1ede42b1b633 (diff)
For tap UIs, register a list of parameters and some menu information.
The intent here is to centralize more UI information so that we can move more tap UI stuff to common code. This is a beginning. Change-Id: Ic35ac0c01bc7b942aab88177db4065847a5e6c30 Reviewed-on: https://code.wireshark.org/review/5301 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/cli/tap-camelcounter.c')
-rw-r--r--ui/cli/tap-camelcounter.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/ui/cli/tap-camelcounter.c b/ui/cli/tap-camelcounter.c
index 440b24ee4f..85fe7a05af 100644
--- a/ui/cli/tap-camelcounter.c
+++ b/ui/cli/tap-camelcounter.c
@@ -118,11 +118,20 @@ static void camelcounter_init(const char *opt_arg, void *userdata _U_)
}
}
+static tap_ui camelcounter_ui = {
+ REGISTER_STAT_GROUP_GENERIC,
+ NULL,
+ "camel,counter",
+ camelcounter_init,
+ -1,
+ 0,
+ NULL
+};
void /* Next line mandatory */
register_tap_listener_camelcounter(void)
{
- register_stat_cmd_arg("camel,counter", camelcounter_init, NULL);
+ register_tap_ui(&camelcounter_ui, NULL);
}
/*