doc: remove wrong trailing slash.
[metze/wireshark/wip.git] / ui / traffic_table_ui.c
1 /* traffic_table_ui.c
2  * Copied from gtk/conversations_table.c   2003 Ronnie Sahlberg
3  * Helper routines common to all conversations taps.
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 #include "config.h"
12
13 #include <glib.h>
14
15 #include "traffic_table_ui.h"
16 #include <wsutil/utf8_entities.h>
17
18 const char *conv_column_titles[CONV_NUM_COLUMNS] = {
19     "Address A",
20     "Port A",
21     "Address B",
22     "Port B",
23     "Packets",
24     "Bytes",
25     "Packets A " UTF8_RIGHTWARDS_ARROW " B",
26     "Bytes A " UTF8_RIGHTWARDS_ARROW " B",
27     "Packets B " UTF8_RIGHTWARDS_ARROW " A",
28     "Bytes B " UTF8_RIGHTWARDS_ARROW " A",
29     "Rel Start",
30     "Duration",
31     "Bits/s A " UTF8_RIGHTWARDS_ARROW " B",
32     "Bits/s B " UTF8_RIGHTWARDS_ARROW " A"
33 };
34
35 const char *conv_conn_a_title = "Connection A";
36 const char *conv_conn_b_title = "Connection B";
37 const char *conv_abs_start_title = "Abs Start";
38
39 const char *endp_column_titles[ENDP_NUM_GEO_COLUMNS] = {
40     "Address",
41     "Port",
42     "Packets",
43     "Bytes",
44     "Tx Packets",
45     "Tx Bytes",
46     "Rx Packets",
47     "Rx Bytes",
48     "Country",
49     "City",
50     "AS Number",
51     "AS Organization"
52 };
53
54 const char *endp_conn_title = "Connection";
55
56 /*
57  * Editor modelines
58  *
59  * Local Variables:
60  * c-basic-offset: 4
61  * tab-width: 8
62  * indent-tabs-mode: nil
63  * End:
64  *
65  * ex: set shiftwidth=4 tabstop=8 expandtab:
66  * :indentSize=4:tabSize=8:noTabs=true:
67  */