summaryrefslogtreecommitdiff
path: root/ui/traffic_table_ui.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2014-08-06 10:07:42 -0700
committerGerald Combs <gerald@wireshark.org>2014-09-05 01:06:53 +0000
commit30f3d524411445c26418c757ac9deb0940afc409 (patch)
treed60cadae8fdfb0612ee6e00bc5f17b550534af29 /ui/traffic_table_ui.c
parent382815d6bdd9a66421ae2e07c734df4c8a4ac398 (diff)
downloadwireshark-30f3d524411445c26418c757ac9deb0940afc409.tar.gz
Qt: Refactor ConversationDialog for endpoints.
Create a TrafficTableDialog (for lack of a better name) parent class from the general parts of ConversationDialog. Use it to create EndpointsDialog. Move the contents of conversation_tree_widget.{cpp,h} to conversation_dialog.{cpp,h} to match endpoint_dialog and traffic_table_dialog. Fill in GeoIP columns dynamically instead of using a hard-coded limit. Use "endp_" and "ENDP_" prefixes for a lot of endpoint variables and defines. Try to make geoip_db_lookup_ipv4 and geoip_db_lookup_ipv6 more robust. Clean up some includes. Fix a shadowed variable. Change-Id: I23054816ac7f8c6edb3b1f01c8536db37ba4122d Reviewed-on: https://code.wireshark.org/review/3462 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/traffic_table_ui.c')
-rw-r--r--ui/traffic_table_ui.c72
1 files changed, 72 insertions, 0 deletions
diff --git a/ui/traffic_table_ui.c b/ui/traffic_table_ui.c
new file mode 100644
index 0000000000..464ec621f5
--- /dev/null
+++ b/ui/traffic_table_ui.c
@@ -0,0 +1,72 @@
+/* traffic_table_ui.c
+ * Copied from gtk/conversations_table.c 2003 Ronnie Sahlberg
+ * Helper routines common to all conversations taps.
+ *
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+#include "config.h"
+
+#include "traffic_table_ui.h"
+#include "utf8_entities.h"
+
+const char *conv_column_titles[CONV_NUM_COLUMNS] = {
+ "Address A",
+ "Port A",
+ "Address B",
+ "Port B",
+ "Packets",
+ "Bytes",
+ "Packets A " UTF8_RIGHTWARDS_ARROW " B",
+ "Bytes A " UTF8_RIGHTWARDS_ARROW " B",
+ "Packets B " UTF8_RIGHTWARDS_ARROW " A",
+ "Bytes B " UTF8_RIGHTWARDS_ARROW " A",
+ "Rel Start",
+ "Duration",
+ "bps A " UTF8_RIGHTWARDS_ARROW " B",
+ "bps B " UTF8_RIGHTWARDS_ARROW " A"
+};
+
+const char *conv_conn_a_title = "Connection A";
+const char *conv_conn_b_title = "Connection B";
+
+const char *endp_column_titles[ENDP_NUM_COLUMNS] = {
+ "Address",
+ "Port",
+ "Packets",
+ "Bytes",
+ "Packets A " UTF8_RIGHTWARDS_ARROW " B",
+ "Bytes A " UTF8_RIGHTWARDS_ARROW " B",
+ "Packets B " UTF8_RIGHTWARDS_ARROW " A",
+ "Bytes B " UTF8_RIGHTWARDS_ARROW " A"
+};
+
+const char *endp_conn_title = "Connection";
+
+/*
+ * 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:
+ */