aboutsummaryrefslogtreecommitdiffstats
path: root/summary.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-12-17 12:05:13 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-12-17 12:05:13 +0000
commite451ab37259e92dcf88e531c7b9b1eab3bc1c260 (patch)
tree6dce17932718ca461c18f8ab653778f4ccc90496 /summary.c
parent5a11901ec750cba91cef211a3f47fdc013edc9e1 (diff)
Added "Ignore Packet" menu items to the main menu.
Show ignored packages in the summary dialog. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31289 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'summary.c')
-rw-r--r--summary.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/summary.c b/summary.c
index 2ef533ffb1..82831b78d4 100644
--- a/summary.c
+++ b/summary.c
@@ -82,6 +82,9 @@ tally_frame_data(frame_data *cur_frame, summary_tally *sum_tally)
sum_tally->marked_count++;
sum_tally->marked_bytes += cur_frame->pkt_len ;
}
+ if (cur_frame->flags.ignored){
+ sum_tally->ignored_count++;
+ }
}
void
@@ -103,6 +106,7 @@ summary_fill_in(capture_file *cf, summary_tally *st)
st->marked_start = 0;
st->marked_stop = 0;
st->marked_bytes = 0;
+ st->ignored_count = 0;
/* initialize the tally */
if (cf->plist_start != NULL) {