aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2007-03-25 11:37:13 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2007-03-25 11:37:13 +0000
commitc96731e2760f97a3b37a5c1693c0e0465302b5be (patch)
tree98d919e379c90b91df424f197648a97ff36b91a9 /gtk
parenta04a009ad00e9d9798d6ad41f564c544a53dd773 (diff)
From Jon Smirl
support for usb host/endpoint lists git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21180 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk')
-rw-r--r--gtk/Makefile.common1
-rw-r--r--gtk/hostlist_table.c2
-rwxr-xr-xgtk/hostlist_usb.c92
3 files changed, 95 insertions, 0 deletions
diff --git a/gtk/Makefile.common b/gtk/Makefile.common
index 598473c329..a2d2992c61 100644
--- a/gtk/Makefile.common
+++ b/gtk/Makefile.common
@@ -162,6 +162,7 @@ WIRESHARK_TAP_SRC = \
hostlist_tcpip.c \
hostlist_tr.c \
hostlist_udpip.c \
+ hostlist_usb.c \
hostlist_wlan.c \
hostlist_rsvp.c \
io_stat.c \
diff --git a/gtk/hostlist_table.c b/gtk/hostlist_table.c
index a4446fd29e..ef6e1c337d 100644
--- a/gtk/hostlist_table.c
+++ b/gtk/hostlist_table.c
@@ -130,6 +130,8 @@ hostlist_get_filter_name(address *addr, int specific_addr_type, int port_type, i
;
}
break;
+ case AT_USB:
+ return "usb.addr";
default:
;
}
diff --git a/gtk/hostlist_usb.c b/gtk/hostlist_usb.c
new file mode 100755
index 0000000000..2425f387ff
--- /dev/null
+++ b/gtk/hostlist_usb.c
@@ -0,0 +1,92 @@
+/* hostlist_usb.c 2007 Jon Smirl
+ * modified from endpoint_talkers_eth.c 2003 Ronnie Sahlberg
+ *
+ * $Id$
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#ifdef HAVE_SYS_TYPES_H
+# include <sys/types.h>
+#endif
+
+#include <gtk/gtk.h>
+#include <string.h>
+#include "epan/packet.h"
+#include <epan/stat_cmd_args.h>
+#include "../stat_menu.h"
+#include "gui_stat_menu.h"
+#include <epan/tap.h>
+#include <epan/emem.h>
+#include "../register.h"
+#include "hostlist_table.h"
+#include <epan/dissectors/packet-usb.h>
+
+
+static int
+usb_hostlist_packet(void *pit, packet_info *pinfo, epan_dissect_t *edt _U_, const void *vip _U_)
+{
+ hostlist_table *hosts=(hostlist_table *)pit;
+
+ /* Take two "add" passes per packet, adding for each direction, ensures that all
+ packets are counted properly (even if address is sending to itself)
+ XXX - this could probably be done more efficiently inside hostlist_table */
+ add_hostlist_table_data(hosts, &pinfo->src, 0, TRUE, 1, pinfo->fd->pkt_len, SAT_NONE, PT_NONE);
+ add_hostlist_table_data(hosts, &pinfo->dst, 0, FALSE, 1, pinfo->fd->pkt_len, SAT_NONE, PT_NONE);
+
+ return 1;
+}
+
+static void
+gtk_usb_hostlist_init(const char *optarg, void* userdata _U_)
+{
+ const char *filter=NULL;
+
+ if (!strncmp(optarg, "hosts,usb," ,10)) {
+ filter = optarg + 10;
+ } else {
+ filter = NULL;
+ }
+
+ init_hostlist_table(TRUE, "USB Hosts", "usb", filter, usb_hostlist_packet);
+
+}
+
+
+static void
+gtk_usb_hostlist_cb(GtkWidget *w _U_, gpointer d _U_)
+{
+ gtk_usb_hostlist_init("hosts,usb", NULL);
+}
+
+
+void
+register_tap_listener_usb_hostlist(void)
+{
+ register_stat_cmd_arg("hosts,usb", gtk_usb_hostlist_init, NULL);
+
+ register_stat_menu_item("USB", REGISTER_STAT_GROUP_ENDPOINT_LIST,
+ gtk_usb_hostlist_cb, NULL, NULL, NULL);
+
+ register_hostlist_table(TRUE, "USB", "usb", NULL /*filter*/, usb_hostlist_packet);
+}