aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/endpoint_talkers_fc.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-08-23 13:35:06 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-08-23 13:35:06 +0000
commit5cf0634041d08d1789f37cda8a1e991086ee2253 (patch)
tree0019f43372f7ec786c715e2671950775c6d936a1 /gtk/endpoint_talkers_fc.c
parentba74395cbe82f5fee8967247e5ea72f6918be845 (diff)
Add FibreChannel to the types of protocols we can show a conversation list for
svn path=/trunk/; revision=8223
Diffstat (limited to 'gtk/endpoint_talkers_fc.c')
-rw-r--r--gtk/endpoint_talkers_fc.c191
1 files changed, 191 insertions, 0 deletions
diff --git a/gtk/endpoint_talkers_fc.c b/gtk/endpoint_talkers_fc.c
new file mode 100644
index 0000000000..01e743b225
--- /dev/null
+++ b/gtk/endpoint_talkers_fc.c
@@ -0,0 +1,191 @@
+/* endpoint_talkers_fc.c
+ * endpoint_talkers_fc 2003 Ronnie Sahlberg
+ *
+ * $Id: endpoint_talkers_fc.c,v 1.1 2003/08/23 13:35:06 sahlberg 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 "menu.h"
+#include "../epan/packet_info.h"
+#include "../tap.h"
+#include "../register.h"
+#include "compat_macros.h"
+#include "../simple_dialog.h"
+#include "../file.h"
+#include "../globals.h"
+#include "endpoint_talkers_table.h"
+#include "packet-fc.h"
+
+/* used to keep track of the statistics for one instance of the stats */
+typedef struct _fc_talkers_t {
+ GtkWidget *win;
+ endpoints_table talkers;
+} fc_talkers_t;
+
+
+void protect_thread_critical_region(void);
+void unprotect_thread_critical_region(void);
+static void
+win_destroy_cb(GtkWindow *win _U_, gpointer data)
+{
+ fc_talkers_t *fc_talkers=(fc_talkers_t *)data;
+
+ protect_thread_critical_region();
+ remove_tap_listener(fc_talkers);
+ unprotect_thread_critical_region();
+
+ reset_ett_table_data(&fc_talkers->talkers);
+ g_free(fc_talkers);
+}
+
+
+static char *
+fc_address_to_str(address *addr)
+{
+ static int i=0;
+ static char *strp, str[4][9];
+
+ i++;
+ if(i>=4){
+ i=0;
+ }
+ strp=str[i];
+
+ sprintf(strp, "%02x.%02x.%02x", addr->data[0], addr->data[1], addr->data[2]);
+
+ return strp;
+}
+
+static void
+fc_talkers_reset(void *pit)
+{
+ fc_talkers_t *fc_talkers=(fc_talkers_t *)pit;
+
+ reset_ett_table_data(&fc_talkers->talkers);
+}
+
+
+static void
+fc_talkers_draw(void *pit)
+{
+ fc_talkers_t *fc_talkers=(fc_talkers_t *)pit;
+
+ draw_ett_table_data(&fc_talkers->talkers);
+}
+
+
+static int
+fc_talkers_packet(void *pit, packet_info *pinfo, epan_dissect_t *edt _U_, void *vip)
+{
+ fc_talkers_t *fc_talkers=(fc_talkers_t *)pit;
+ fc_hdr *fchdr=vip;
+
+ add_ett_table_data(&fc_talkers->talkers, &fchdr->s_id, &fchdr->d_id, 0, 0, 1, pinfo->fd->pkt_len);
+
+ return 1;
+}
+
+
+
+static void
+gtk_fc_talkers_init(char *optarg)
+{
+ char *filter=NULL;
+ fc_talkers_t *fc_talkers;
+ GtkWidget *vbox;
+ GtkWidget *label;
+ GString *error_string;
+
+
+ if(!strncmp(optarg,"talkers,fc,",11)){
+ filter=optarg+11;
+ } else {
+ filter=NULL;
+ }
+
+ fc_talkers=g_malloc(sizeof(fc_talkers_t));
+
+ fc_talkers->win=gtk_window_new(GTK_WINDOW_TOPLEVEL);
+ gtk_window_set_default_size(GTK_WINDOW(fc_talkers->win), 750, 400);
+ gtk_window_set_title(GTK_WINDOW(fc_talkers->win), "Fibre Channel Talkers");
+
+ SIGNAL_CONNECT(fc_talkers->win, "destroy", win_destroy_cb, fc_talkers);
+
+ vbox=gtk_vbox_new(FALSE, 0);
+ gtk_container_add(GTK_CONTAINER(fc_talkers->win), vbox);
+ gtk_container_set_border_width(GTK_CONTAINER(vbox), 10);
+ gtk_widget_show(vbox);
+
+ label=gtk_label_new("Fibre Channel Talkers");
+ gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);
+ gtk_widget_show(label);
+
+ /* We must display TOP LEVEL Widget before calling init_ett_table() */
+ gtk_widget_show(fc_talkers->win);
+
+ init_ett_table(&fc_talkers->talkers, vbox, fc_address_to_str, NULL);
+
+ error_string=register_tap_listener("fc", fc_talkers, filter, fc_talkers_reset, fc_talkers_packet, fc_talkers_draw);
+ if(error_string){
+ simple_dialog(ESD_TYPE_WARN, NULL, error_string->str);
+ g_string_free(error_string, TRUE);
+ g_free(fc_talkers);
+ return;
+ }
+
+ gtk_widget_show_all(fc_talkers->win);
+ redissect_packets(&cfile);
+}
+
+
+static void
+gtk_fc_endpoints_cb(GtkWidget *w _U_, gpointer d _U_)
+{
+ gtk_fc_talkers_init("talkers,fc");
+}
+
+
+void
+register_tap_menu_fc_talkers(void)
+{
+ register_tap_menu_item("Endpoint Talkers/Fibre Channel", gtk_fc_endpoints_cb);
+}
+
+
+
+
+void
+register_tap_listener_fc_talkers(void)
+{
+ register_ethereal_tap("talkers,fc", gtk_fc_talkers_init);
+}
+