summaryrefslogtreecommitdiff
path: root/cfile.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2010-08-16 18:17:45 +0000
committerAnders Broman <anders.broman@ericsson.com>2010-08-16 18:17:45 +0000
commit46cd4a8507f56cc61d46cca849e7bf8903a9c49d (patch)
treeda049ea1a4163fcbc6cb3ad790573777e642f543 /cfile.h
parent6ef98db3bb08d5dfb37aed480fb3458ae1ab9d9a (diff)
downloadwireshark-46cd4a8507f56cc61d46cca849e7bf8903a9c49d.tar.gz
From Cal Turney:
1. Restore the functionality of <Ctrl>A and <Ctrl>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
Diffstat (limited to 'cfile.h')
-rw-r--r--cfile.h1
1 files changed, 1 insertions, 0 deletions
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 */