diff options
author | Laurent Deniel <laurent.deniel@free.fr> | 2000-08-21 18:20:19 +0000 |
---|---|---|
committer | Laurent Deniel <laurent.deniel@free.fr> | 2000-08-21 18:20:19 +0000 |
commit | 05984d233d86ea3ade976216cacf2cf3b8bd6a01 (patch) | |
tree | 590171ed36934356a9e421fe4786472ba35e62fe /summary.c | |
parent | 8fbd65cc7fa830d497c14ee29d9912e618a09e8f (diff) | |
download | wireshark-05984d233d86ea3ade976216cacf2cf3b8bd6a01.tar.gz wireshark-05984d233d86ea3ade976216cacf2cf3b8bd6a01.tar.bz2 wireshark-05984d233d86ea3ade976216cacf2cf3b8bd6a01.zip |
Add the number of marked packets in the summary window.
svn path=/trunk/; revision=2323
Diffstat (limited to 'summary.c')
-rw-r--r-- | summary.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,7 +1,7 @@ /* summary.c * Routines for capture file summary info * - * $Id: summary.c,v 1.18 2000/06/27 04:35:46 guy Exp $ + * $Id: summary.c,v 1.19 2000/08/21 18:20:11 deniel Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -55,6 +55,9 @@ tally_frame_data(frame_data *cur_frame, summary_tally *sum_tally) sum_tally->bytes += cur_frame->pkt_len; if (cur_frame->flags.passed_dfilter) sum_tally->filtered_count++; + if (cur_frame->flags.marked) + sum_tally->marked_count++; + } void @@ -69,6 +72,7 @@ summary_fill_in(summary_tally *st) st->stop_time = 0; st->bytes = 0; st->filtered_count = 0; + st->marked_count = 0; /* initialize the tally */ if (cfile.plist != NULL) { |