HACK: 1. try to match RowsetProperties
[wireshark-wip.git] / ui / gtk / conversations_fc.c
blob3c66fb88ac71276494ef6511d4e131248610d77e
1 /* conversations_fc.c
2 * conversations_fc 2003 Ronnie Sahlberg
4 * $Id$
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include "config.h"
27 #include <string.h>
29 #include <gtk/gtk.h>
31 #include <epan/packet.h>
32 #include <epan/stat_cmd_args.h>
33 #include <epan/tap.h>
34 #include <epan/conversation.h>
35 #include <epan/dissectors/packet-scsi.h>
36 #include <epan/dissectors/packet-fc.h>
38 #include "../stat_menu.h"
40 #include "ui/gtk/gui_stat_menu.h"
41 #include "ui/gtk/conversations_table.h"
44 static int
45 fc_conversation_packet(void *pct, packet_info *pinfo, epan_dissect_t *edt _U_, const void *vip)
47 const fc_hdr *fchdr=(fc_hdr *)vip;
49 add_conversation_table_data((conversations_table *)pct, &fchdr->s_id, &fchdr->d_id, 0, 0, 1, pinfo->fd->pkt_len, &pinfo->rel_ts, SAT_NONE, PT_NONE);
51 return 1;
56 static void
57 fc_conversation_init(const char *opt_arg, void* userdata _U_)
59 const char *filter=NULL;
61 if(!strncmp(opt_arg,"conv,fc,",8)){
62 filter=opt_arg+8;
63 } else {
64 filter=NULL;
67 init_conversation_table(TRUE, "Fibre Channel", "fc", filter, fc_conversation_packet);
71 void
72 fc_endpoints_cb(GtkAction *action _U_, gpointer user_data _U_)
74 fc_conversation_init("conv,fc",NULL);
77 void
78 register_tap_listener_fc_conversation(void)
80 register_stat_cmd_arg("conv,fc", fc_conversation_init, NULL);
81 register_conversation_table(TRUE, "Fibre Channel", "fc", NULL /*filter*/, fc_conversation_packet);