"hex_str_to_bytes()" modifies the GByteArray supplied to it, so don't
[obnox/wireshark/wip.git] / gtk / endpoint_talkers_fc.c
1 /* endpoint_talkers_fc.c
2  * endpoint_talkers_fc   2003 Ronnie Sahlberg
3  *
4  * $Id: endpoint_talkers_fc.c,v 1.19 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-fc.h"
43
44
45 static int
46 fc_talkers_packet(void *pit, packet_info *pinfo, epan_dissect_t *edt _U_, void *vip)
47 {
48         endpoints_table *talkers=(endpoints_table *)pit;
49         fc_hdr *fchdr=vip;
50
51         add_ett_table_data(talkers, &fchdr->s_id, &fchdr->d_id, 0, 0, 1, pinfo->fd->pkt_len, SAT_NONE, PT_NONE);
52
53         return 1;
54 }
55
56
57
58 static void
59 gtk_fc_talkers_init(char *optarg)
60 {
61         char *filter=NULL;
62
63         if(!strncmp(optarg,"conv,fc,",8)){
64                 filter=optarg+8;
65         } else {
66                 filter=NULL;
67         }
68
69         init_ett_table(TRUE, "Fibre Channel", "fc", filter, (void *)fc_talkers_packet);
70
71 }
72
73
74 static void
75 gtk_fc_endpoints_cb(GtkWidget *w _U_, gpointer d _U_)
76 {
77         gtk_fc_talkers_init("conv,fc");
78 }
79
80
81 void
82 register_tap_menu_fc_talkers(void)
83 {
84         register_tap_menu_item("Statistics/Conversation List/Fibre Channel",
85             gtk_fc_endpoints_cb, NULL, NULL, NULL);
86 }
87
88
89
90
91 void
92 register_tap_listener_fc_talkers(void)
93 {
94         register_ethereal_tap("conv,fc", gtk_fc_talkers_init);
95 }
96