aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/hostlist_ip.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-02-20 09:09:12 +0000
committerGuy Harris <guy@alum.mit.edu>2004-02-20 09:09:12 +0000
commit9c7c10744a85edf8183a170b52493ae37e8f4f0a (patch)
tree39ff360d198381ae8902dd565293f76c562b78df /gtk/hostlist_ip.c
parent0f1b525563c8797aa9f5a32259c000ff0fd0226e (diff)
From Ian Schorr: taps to keep statistics of traffic by host.
svn path=/trunk/; revision=10120
Diffstat (limited to 'gtk/hostlist_ip.c')
-rw-r--r--gtk/hostlist_ip.c95
1 files changed, 95 insertions, 0 deletions
diff --git a/gtk/hostlist_ip.c b/gtk/hostlist_ip.c
new file mode 100644
index 0000000000..26f83ba3b4
--- /dev/null
+++ b/gtk/hostlist_ip.c
@@ -0,0 +1,95 @@
+/* hostlist_ip.c 2004 Ian Schorr
+ * modified from endpoint_talkers_ip.c 2003 Ronnie Sahlberg
+ *
+ * $Id: hostlist_ip.c,v 1.1 2004/02/20 09:09:11 guy Exp $
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * 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
+
+#include <stdio.h>
+
+#ifdef HAVE_SYS_TYPES_H
+# include <sys/types.h>
+#endif
+
+#include <gtk/gtk.h>
+#include <string.h>
+#include "epan/packet.h"
+#include "tap_menu.h"
+#include "../tap.h"
+#include "../register.h"
+#include "hostlist_table.h"
+#include "packet-ip.h"
+
+
+static int
+ip_hostlist_packet(void *pit, packet_info *pinfo, epan_dissect_t *edt _U_, void *vip)
+{
+ hostlist_table *hosts=(hostlist_table *)pit;
+ e_ip *iph=vip;
+
+ /* 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, &iph->ip_src, 0, TRUE, 1, pinfo->fd->pkt_len, SAT_NONE, PT_NONE);
+ add_hostlist_table_data(hosts, &iph->ip_dst, 0, FALSE, 1, pinfo->fd->pkt_len, SAT_NONE, PT_NONE);
+ return 1;
+}
+
+static void
+gtk_ip_hostlist_init(char *optarg)
+{
+ char *filter=NULL;
+
+ if(!strncmp(optarg,"conv,ip,",8)){
+ filter=optarg+8;
+ } else {
+ filter=NULL;
+ }
+
+ init_hostlist_table(TRUE, "IPv4", "ip", filter, (void *)ip_hostlist_packet);
+
+}
+
+
+static void
+gtk_ip_hostlist_cb(GtkWidget *w _U_, gpointer d _U_)
+{
+ gtk_ip_hostlist_init("conv,ip");
+}
+
+
+void
+register_tap_menu_ip_hostlist(void)
+{
+ register_tap_menu_item("_Statistics/Host List/IPv4",
+ gtk_ip_hostlist_cb, NULL, NULL, NULL);
+}
+
+
+void
+register_tap_listener_ip_hostlist(void)
+{
+ register_ethereal_tap("conv,ip", gtk_ip_hostlist_init);
+}
+