From 46cd4a8507f56cc61d46cca849e7bf8903a9c49d Mon Sep 17 00:00:00 2001 From: Anders Broman Date: Mon, 16 Aug 2010 18:17:45 +0000 Subject: From Cal Turney: 1. Restore the functionality of A and X to the filter textbox. 2. Assign intuitive shortcuts without consuming any new shortcut letters. 3. Add 'Un-Time Reference All Packets' to the menu. 4. Disallow the marking or ignoring of all packets in the capture. 5. Make the Mark/Ignore/Time Reference-related menu items context sensitive. 6. Add 'ref_time_count' to the capture_file structure 7. Utilize marked/ignored/ref_time_count vars to prevent needless looping thru the entire packet list by exiting the loop when it becomes zero. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5115 svn path=/trunk/; revision=33817 --- cfile.h | 1 + 1 file changed, 1 insertion(+) (limited to 'cfile.h') diff --git a/cfile.h b/cfile.h index 9e7dd0851f..5789b0d230 100644 --- a/cfile.h +++ b/cfile.h @@ -59,6 +59,7 @@ typedef struct _capture_file { int displayed_count; /* Number of displayed frames */ int marked_count; /* Number of marked frames */ int ignored_count; /* Number of ignored frames */ + int ref_time_count; /* Number of time referenced frames */ gboolean drops_known; /* TRUE if we know how many packets were dropped */ guint32 drops; /* Dropped packets */ nstime_t elapsed_time; /* Elapsed time */ -- cgit v1.2.1