"hex_str_to_bytes()" modifies the GByteArray supplied to it, so don't
[obnox/wireshark/wip.git] / gtk / endpoint_talkers_udpip.c
1 /* endpoint_talkers_udpip.c
2  * endpoint_talkers_udpip   2003 Ronnie Sahlberg
3  *
4  * $Id: endpoint_talkers_udpip.c,v 1.21 2003/12/17 22:13:06 guy Exp $
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 "menu.h"
39 #include "../tap.h"
40 #include "../register.h"
41 #include "endpoint_talkers_table.h"
42 #include "packet-udp.h"
43
44
45 static int
46 udpip_talkers_packet(void *pit, packet_info *pinfo, epan_dissect_t *edt _U_, void *vip)
47 {
48         endpoints_table *talkers=(endpoints_table *)pit;
49         e_udphdr *udphdr=vip;
50
51         add_ett_table_data(talkers, &udphdr->ip_src, &udphdr->ip_dst, udphdr->uh_sport, udphdr->uh_dport, 1, pinfo->fd->pkt_len, SAT_NONE, PT_UDP);
52
53         return 1;
54 }
55
56
57
58 static void
59 gtk_udpip_talkers_init(char *optarg)
60 {
61         char *filter=NULL;
62
63         if(!strncmp(optarg,"conv,udp,",9)){
64                 filter=optarg+9;
65         } else {
66                 filter=NULL;
67         }
68
69         init_ett_table(FALSE, "UDP", "udp", filter, (void *)udpip_talkers_packet);
70
71 }
72
73
74 static void
75 gtk_udpip_endpoints_cb(GtkWidget *w _U_, gpointer d _U_)
76 {
77         gtk_udpip_talkers_init("conv,udp");
78 }
79
80
81 void
82 register_tap_menu_udpip_talkers(void)
83 {
84         register_tap_menu_item("Statistics/Conversation List/UDP (IPv4 IPv6)",
85             gtk_udpip_endpoints_cb, NULL, NULL, NULL);
86 }
87
88
89
90
91 void
92 register_tap_listener_udpip_talkers(void)
93 {
94         register_ethereal_tap("conv,udp", gtk_udpip_talkers_init);
95 }
96