diff options
author | Stig Bjørlykke <stig@bjorlykke.org> | 2009-12-17 12:05:13 +0000 |
---|---|---|
committer | Stig Bjørlykke <stig@bjorlykke.org> | 2009-12-17 12:05:13 +0000 |
commit | ef92b4ec1172e359656ce9baa1567e8ddd49557b (patch) | |
tree | 6dce17932718ca461c18f8ab653778f4ccc90496 /summary.c | |
parent | e1b992ef3b3f579413981c52ec5514d9da8899ac (diff) | |
download | wireshark-ef92b4ec1172e359656ce9baa1567e8ddd49557b.tar.gz wireshark-ef92b4ec1172e359656ce9baa1567e8ddd49557b.tar.bz2 wireshark-ef92b4ec1172e359656ce9baa1567e8ddd49557b.zip |
Added "Ignore Packet" menu items to the main menu.
Show ignored packages in the summary dialog.
svn path=/trunk/; revision=31289
Diffstat (limited to 'summary.c')
-rw-r--r-- | summary.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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) { |