aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/conversations_tcpip.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 /gtk/conversations_tcpip.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 'gtk/conversations_tcpip.c')
-rw-r--r--gtk/conversations_tcpip.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk/conversations_tcpip.c b/gtk/conversations_tcpip.c
index f35051275b..ed77b85218 100644
--- a/gtk/conversations_tcpip.c
+++ b/gtk/conversations_tcpip.c
@@ -33,7 +33,8 @@
#include <gtk/gtk.h>
#include <string.h>
#include "epan/packet.h"
-#include "tap_menu.h"
+#include "../stat.h"
+#include "stat_menu.h"
#include <epan/tap.h>
#include "../register.h"
#include "conversations_table.h"
@@ -78,9 +79,9 @@ tcpip_conversation_cb(GtkWidget *w _U_, gpointer d _U_)
void
register_tap_listener_tcpip_conversation(void)
{
- register_tap_listener_cmd_arg("conv,tcp", tcpip_conversation_init);
+ register_stat_cmd_arg("conv,tcp", tcpip_conversation_init);
- register_tap_menu_item("TCP (IPv4 & IPv6)", REGISTER_TAP_GROUP_CONVERSATION_LIST,
+ register_stat_menu_item("TCP (IPv4 & IPv6)", REGISTER_STAT_GROUP_CONVERSATION_LIST,
tcpip_conversation_cb, NULL, NULL, NULL);
register_conversation_table(FALSE, "TCP", "tcp", NULL /*filter*/, tcpip_conversation_packet);