aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/wtap-int.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-09-09 08:40:58 +0000
committerGuy Harris <guy@alum.mit.edu>2005-09-09 08:40:58 +0000
commit90ce35c64e96fc3b8c6151e3faf926650d1f45f8 (patch)
tree6a15dd0fd0c74f836ab59ce96715deb8aa455242 /wiretap/wtap-int.h
parent5886bb20adfb0701bddbf3a845fe6596402f01ce (diff)
From Bill Meier:
define "timezone" as "gint16", as it can be positive (west of UTC) or negative (east of UTC); update comments to refer to the new names for structure members; say the precision of the time stamps is 1 nanosecond only if the ticks per second is > 10 million; fix the handling of files truncated exactly on a frame boundary. svn path=/trunk/; revision=15739
Diffstat (limited to 'wiretap/wtap-int.h')
-rw-r--r--wiretap/wtap-int.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/wiretap/wtap-int.h b/wiretap/wtap-int.h
index 6dc3c694aa..79f3d072f0 100644
--- a/wiretap/wtap-int.h
+++ b/wiretap/wtap-int.h
@@ -104,7 +104,9 @@ typedef struct {
double timeunit;
double start_timestamp;
gboolean wrapped;
- int end_offset;
+ guint32 nframes;
+ long start_offset;
+ long end_offset;
int version_major;
gboolean fcs_valid; /* if packets have valid FCS at the end */
guint isdn_type; /* 1 = E1 PRI, 2 = T1 PRI, 3 = BRI */