Add an average packet size, as suggested by Daniel Jackson.

svn path=/trunk/; revision=7313
This commit is contained in:
Gerald Combs 2003-03-07 20:27:02 +00:00
parent fb65eca073
commit 40606a6ed2
1 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
/* summary_dlg.c
* Routines for capture file summary window
*
* $Id: summary_dlg.c,v 1.17 2002/11/11 15:39:06 oabad Exp $
* $Id: summary_dlg.c,v 1.18 2003/03/07 20:27:02 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -144,6 +144,10 @@ summary_open_cb(GtkWidget *w _U_, gpointer d _U_)
add_string_to_box(string_buff, data_box);
}
/* Packet size */
snprintf(string_buff, SUM_STR_MAX, "Avg. packet size: %.3f bytes", (float) summary.bytes/summary.packet_count);
add_string_to_box(string_buff, data_box);
/* Dropped count */
if (summary.drops_known) {
snprintf(string_buff, SUM_STR_MAX, "Dropped packets: %u", summary.drops);