summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2010-03-18 22:40:07 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2010-03-18 22:40:07 +0000
commit2187ab38e4e9f275d2a36bfd56e794a0b26b72d0 (patch)
tree318e21613d21cc84a3938dfbf76624b0ca8944bc /gtk
parentc8e584481be6206ebf0d2db7eacb2501b1a40053 (diff)
downloadwireshark-2187ab38e4e9f275d2a36bfd56e794a0b26b72d0.tar.gz
Time to drop the T38 analysis menu option.
svn path=/trunk/; revision=32237
Diffstat (limited to 'gtk')
-rw-r--r--gtk/CMakeLists.txt1
-rw-r--r--gtk/Makefile.common1
-rw-r--r--gtk/t38_analysis.c91
3 files changed, 0 insertions, 93 deletions
diff --git a/gtk/CMakeLists.txt b/gtk/CMakeLists.txt
index bf392e3759..4ae36cde3b 100644
--- a/gtk/CMakeLists.txt
+++ b/gtk/CMakeLists.txt
@@ -193,7 +193,6 @@ set(WIRESHARK_TAP_SRC
smb_stat.c
smb2_stat.c
stats_tree_stat.c
- t38_analysis.c
tcp_graph.c
voip_calls_dlg.c
wlan_stat_dlg.c
diff --git a/gtk/Makefile.common b/gtk/Makefile.common
index d0b2533d89..f5fcb9ef03 100644
--- a/gtk/Makefile.common
+++ b/gtk/Makefile.common
@@ -208,7 +208,6 @@ WIRESHARK_TAP_SRC = \
smb_stat.c \
smb2_stat.c \
stats_tree_stat.c \
- t38_analysis.c \
tcp_graph.c \
voip_calls_dlg.c \
wlan_stat_dlg.c \
diff --git a/gtk/t38_analysis.c b/gtk/t38_analysis.c
deleted file mode 100644
index 9d5175bcb9..0000000000
--- a/gtk/t38_analysis.c
+++ /dev/null
@@ -1,91 +0,0 @@
-/* t38_analysis.c
- * T.38 fax analysis for Wireshark
- *
- * $Id$
- *
- * Copyright 2005 Verso Technologies Inc.
- * By Alejandro Vaquero <alejandro.vaquero@verso.com>
- *
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * 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.
- */
-
-#include <gtk/gtk.h>
-
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-#include <string.h>
-
-#include <epan/epan.h>
-#include <epan/packet.h>
-#include <epan/tap.h>
-#include <epan/epan_dissect.h>
-#include <epan/dissectors/packet-t38.h>
-#include <epan/dissectors/packet-rtp.h>
-#include <epan/stat_cmd_args.h>
-
-#include "../globals.h"
-#include "../stat_menu.h"
-#include "../alert_box.h"
-#include "../simple_dialog.h"
-
-#include "gtk/main.h"
-#include "gtk/gui_stat_menu.h"
-
-
-void voip_calls_init_tap(const char *);
-
-/****************************************************************************/
-/* user confirmed the info dialog */
-/* callback from dialog */
-static void t38_analysis_answered_cb(gpointer dialog _U_, gint btn _U_, gpointer data _U_)
-{
- voip_calls_init_tap("");
-}
-
-/****************************************************************************/
-/* entry point from main menu */
-static void t38_analysis_cb(GtkWidget *w _U_, gpointer data _U_)
-{
- gpointer dialog;
-
- /* We have moved this directly to the VoIP Calls */
- dialog = simple_dialog(ESD_TYPE_INFO, ESD_BTN_OK,
- "This feature has been moved to the \"VoIP Calls\"");
- simple_dialog_set_cb(dialog, t38_analysis_answered_cb, NULL);
-}
-
-/****************************************************************************/
-static void
-t38_analysis_init(const char *dummy _U_, void* userdata _U_)
-{
- t38_analysis_cb(NULL, NULL);
-}
-
-/****************************************************************************/
-void
-register_tap_listener_t38_analysis(void)
-{
- register_stat_cmd_arg("t38", t38_analysis_init,NULL);
-
-
- register_stat_menu_item("_Fax T38 Analysis...", REGISTER_STAT_GROUP_TELEPHONY,
- t38_analysis_cb, NULL, NULL, NULL);
-}