From fdb85029fd9b22b221f7123905f1bad66c04ce91 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Fri, 5 Jun 2015 13:17:13 -0700 Subject: Add ServiceResponseTimeDialog. Add ServiceResponseTimeDialog as a subclass of TapParameterDialog, similar to StatsTreeDialog. Add initial plumbing for statistics menu items and command line invocation. Don't append "..." to menu item names. Don't add menu icons. In each case this avoids repetitive UI clutter. Change-Id: I463b95c93090160bb81d2e80b16aad389dc0bd6c Reviewed-on: https://code.wireshark.org/review/8864 Reviewed-by: Gerald Combs Reviewed-by: Michael Mann --- ui/service_response_time.c | 47 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 ui/service_response_time.c (limited to 'ui/service_response_time.c') diff --git a/ui/service_response_time.c b/ui/service_response_time.c new file mode 100644 index 0000000000..528675bb75 --- /dev/null +++ b/ui/service_response_time.c @@ -0,0 +1,47 @@ +/* service_response_time.c + * Copied from ui/gtk/service_response_time_table.h, 2003 Ronnie Sahlberg + * Helper routines and structs common to all service response time statistics + * taps. + * + * Wireshark - Network traffic analyzer + * By Gerald Combs + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#include "service_response_time.h" + +extern const char* +service_response_time_get_column_name (int index) +{ + static const char *default_titles[] = { "Index", "Procedure", "Calls", "Min SRT (s)", "Max SRT (s)", "Avg SRT (s)", "Sum SRT (s)" }; + + if (index < 0 || index >= NUM_SRT_COLUMNS) return "(Unknown)"; + return default_titles[index]; +} + +/* + * Editor modelines + * + * Local Variables: + * c-basic-offset: 4 + * tab-width: 8 + * indent-tabs-mode: nil + * End: + * + * ex: set shiftwidth=4 tabstop=8 expandtab: + * :indentSize=4:tabSize=8:noTabs=true: + */ -- cgit v1.2.1