Change name of "Last-Protocol" columns to "End" so that there's

a better chance of them fitting horizontally into the window, for
users of small screens.

svn path=/trunk/; revision=3203
This commit is contained in:
Gilbert Ramirez 2001-03-29 04:21:35 +00:00
parent d8f688ea26
commit 9bda102f83
2 changed files with 7 additions and 6 deletions

View File

@ -409,9 +409,10 @@ organizes the protocols in the same hierarchy in which
they were found in the trace. Besides counting the packets they were found in the trace. Besides counting the packets
in which the protocol exists, a count is also made in which the protocol exists, a count is also made
for packets in which the protocol is the last protocol in for packets in which the protocol is the last protocol in
the stack. These "Last Protocol" counts show you how many packets the stack. These last-protocol counts show you how many packets
(and the byte count associated with those packets) B<ended> in a particular (and the byte count associated with those packets) B<ended> in a particular
protocol. protocol. In the table, they are listed under "End Packets" and
"End Bytes".
=head2 WINDOWS =head2 WINDOWS

View File

@ -1,6 +1,6 @@
/* proto_hier_stats_dlg.c /* proto_hier_stats_dlg.c
* *
* $Id: proto_hier_stats_dlg.c,v 1.3 2001/03/26 03:02:57 gram Exp $ * $Id: proto_hier_stats_dlg.c,v 1.4 2001/03/29 04:21:35 gram Exp $
* *
* Ethereal - Network traffic analyzer * Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org> * By Gerald Combs <gerald@zing.org>
@ -119,11 +119,11 @@ create_tree(GtkWidget *container, ph_stats_t *ps)
int i, height; int i, height;
gchar *column_titles[NUM_STAT_COLUMNS] = { gchar *column_titles[NUM_STAT_COLUMNS] = {
"Protocol", "Protocol",
"Percentage Packets", "% Packets",
"Packets", "Packets",
"Bytes", "Bytes",
"Last-Protocol Packets", "End Packets",
"Last-Protocol Bytes", "End Bytes",
}; };
/* Scrolled Window */ /* Scrolled Window */