From 47be3577a731492ab1667fdc39233094051c01a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig=20Bj=C3=B8rlykke?= Date: Thu, 17 Dec 2009 01:18:14 +0000 Subject: Introduce "Ignore Packet" in the packet list. This will remove the package from the dissection functions without removing it from the capture file. svn path=/trunk/; revision=31287 --- gtk/main_statusbar.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gtk/main_statusbar.c') diff --git a/gtk/main_statusbar.c b/gtk/main_statusbar.c index 9d4a97224f..2ed3b1508f 100644 --- a/gtk/main_statusbar.c +++ b/gtk/main_statusbar.c @@ -439,6 +439,9 @@ packets_bar_update(void) if(cfile.drops_known) { packets_str = g_strdup_printf(" Packets: %u Displayed: %u Marked: %u Dropped: %u", cfile.count, cfile.displayed_count, cfile.marked_count, cfile.drops); + } else if (cfile.ignored_count > 0) { + packets_str = g_strdup_printf(" Packets: %u Displayed: %u Marked: %u Ignored: %u", + cfile.count, cfile.displayed_count, cfile.marked_count, cfile.ignored_count); } else { gulong computed_elapsed = cf_get_computed_elapsed(); -- cgit v1.2.3