Move dissectors to epan/dissectors directory.
[obnox/wireshark/wip.git] / gtk / hostlist_ip.c
1 /* hostlist_ip.c   2004 Ian Schorr
2  * modified from endpoint_talkers_ip.c   2003 Ronnie Sahlberg
3  *
4  * $Id$
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include <stdio.h>
30
31 #ifdef HAVE_SYS_TYPES_H
32 # include <sys/types.h>
33 #endif
34
35 #include <gtk/gtk.h>
36 #include <string.h>
37 #include "epan/packet.h"
38 #include "tap_menu.h"
39 #include "../tap.h"
40 #include "../register.h"
41 #include "hostlist_table.h"
42 #include <epan/dissectors/packet-ip.h>
43
44
45 static int
46 ip_hostlist_packet(void *pit, packet_info *pinfo, epan_dissect_t *edt _U_, void *vip)
47 {
48         hostlist_table *hosts=(hostlist_table *)pit;
49         e_ip *iph=vip;
50
51         /* Take two "add" passes per packet, adding for each direction, ensures that all
52         packets are counted properly (even if address is sending to itself) 
53         XXX - this could probably be done more efficiently inside hostlist_table */
54         add_hostlist_table_data(hosts, &iph->ip_src, 0, TRUE, 1, pinfo->fd->pkt_len, SAT_NONE, PT_NONE);
55         add_hostlist_table_data(hosts, &iph->ip_dst, 0, FALSE, 1, pinfo->fd->pkt_len, SAT_NONE, PT_NONE);
56         return 1;
57 }
58
59 static void
60 gtk_ip_hostlist_init(char *optarg)
61 {
62         char *filter=NULL;
63
64         if(!strncmp(optarg,"hosts,ip,",9)){
65                 filter=optarg+9;
66         } else {
67                 filter=NULL;
68         }
69
70         init_hostlist_table(TRUE, "IPv4 Hosts", "ip", filter, (void *)ip_hostlist_packet);
71
72 }
73
74
75 static void
76 gtk_ip_hostlist_cb(GtkWidget *w _U_, gpointer d _U_)
77 {
78         gtk_ip_hostlist_init("hosts,ip");
79 }
80
81
82 void
83 register_tap_listener_ip_hostlist(void)
84 {
85         register_ethereal_tap("hosts,ip", gtk_ip_hostlist_init);
86
87         register_tap_menu_item("IPv4", REGISTER_TAP_GROUP_ENDPOINT_LIST,
88                 gtk_ip_hostlist_cb, NULL, NULL, NULL);
89
90         register_hostlist_table(TRUE, "IPv4", "ip", NULL /*filter*/, (void *)ip_hostlist_packet);
91 }
92