aboutsummaryrefslogtreecommitdiffstats
path: root/epan/timestamp.h
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2007-03-23 18:08:17 +0000
committerStephen Fisher <steve@stephen-fisher.com>2007-03-23 18:08:17 +0000
commit6d8d2854c8cf998605e041987610986d09375c6a (patch)
tree49c7db39b4c44d02429daa16149f2ba63678af4e /epan/timestamp.h
parent62f88a4a04d8e300ff108f6164e9016e8cdcc9c3 (diff)
From Sake Blok:
Fix for bug #491: Unexpected frame.time_delta behavior This patch ... fixes bug 491. It does this by changing the behaviour of the frame.time_delta field so it reflects the delta time between captured packets (tshark already did this). To keep the delta time between displayed packets, the field frame.time_delta_displayed is created. svn path=/trunk/; revision=21154
Diffstat (limited to 'epan/timestamp.h')
-rw-r--r--epan/timestamp.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/timestamp.h b/epan/timestamp.h
index 3e22c6222e..bf45d3f8b6 100644
--- a/epan/timestamp.h
+++ b/epan/timestamp.h
@@ -32,7 +32,8 @@ typedef enum {
TS_RELATIVE, /* Since start of capture */
TS_ABSOLUTE,
TS_ABSOLUTE_WITH_DATE,
- TS_DELTA, /* Since previous packet */
+ TS_DELTA, /* Since previous captured packet */
+ TS_DELTA_DIS, /* Since previous displayed packet */
TS_EPOCH, /* Seconds (and fractions) since epoch */
/*