aboutsummaryrefslogtreecommitdiffstats
path: root/epan/frame_data.h
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-09-12 02:48:23 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-09-12 02:48:23 +0000
commit007d8736715a85a30f741e10d614c959f8453f5a (patch)
tree21b608c53087cf310dd670197f7e44229e8a352b /epan/frame_data.h
parent9f5cabe15145ae66dadfae93411a2c4e136e2328 (diff)
Added TimeReference frames.
One can now select a packet and mark it as a TimeReference packet using the menu. A TimeReference packet will be indicated by having all timestamp related column entries replaced by the string *REF* A TimeReference packet will always be displayed in the packet pane, and overrides any display filters. When a frame is a TimeReference frame, all later frames will calculate the TimeRelativeToFirstPacket relative to the timestamp of the TimeReference frame instead of the first frame of the capture. You can have any number of TimeReference frames you like. svn path=/trunk/; revision=8459
Diffstat (limited to 'epan/frame_data.h')
-rw-r--r--epan/frame_data.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/frame_data.h b/epan/frame_data.h
index fc68f0b6d9..9e38551b10 100644
--- a/epan/frame_data.h
+++ b/epan/frame_data.h
@@ -1,7 +1,7 @@
/* frame_data.h
* Definitions for frame_data structures and routines
*
- * $Id: frame_data.h,v 1.9 2003/09/03 10:49:02 sahlberg Exp $
+ * $Id: frame_data.h,v 1.10 2003/09/12 02:48:22 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -52,6 +52,7 @@ typedef struct _frame_data {
unsigned int encoding : 2; /* Character encoding (ASCII, EBCDIC...) */
unsigned int visited : 1; /* Has this packet been visited yet? 1=Yes,0=No*/
unsigned int marked : 1; /* 1 = marked by user, 0 = normal */
+ unsigned int ref_time : 1; /* 1 = marked as a reference time frame, 0 = normal */
} flags;
} frame_data;