aboutsummaryrefslogtreecommitdiffstats
path: root/epan/column_info.h
diff options
context:
space:
mode:
authorSake Blok <sake@euronet.nl>2007-10-03 14:02:08 +0000
committerSake Blok <sake@euronet.nl>2007-10-03 14:02:08 +0000
commita592e6412ca6ecf71129fbf12a3de46a327239e6 (patch)
tree1c21dab32b2f4b96276394ee9f42edd7d72a0794 /epan/column_info.h
parent022aaeb39df43f0a478027101775f6b259525b50 (diff)
This patch adds two new column types:
- COL_REL_CONV_TIME which is used to display the time relative to the first frame that was seen in the conversation - COL_DELTA_CONV_TIME which is used to display the delta time from the previous frame of the conversation It also adds the function "col_set_time()" to "epan/column-utils.[ch]" which can be called from within a dissector to set either of these two columns to the appropiate time. Last but not least, it lets the tcp-dissector make use of these two columns. svn path=/trunk/; revision=23058
Diffstat (limited to 'epan/column_info.h')
-rw-r--r--epan/column_info.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/column_info.h b/epan/column_info.h
index 5b8bd64c7f..a355797b99 100644
--- a/epan/column_info.h
+++ b/epan/column_info.h
@@ -64,6 +64,8 @@ enum {
COL_ABS_DATE_TIME, /* Absolute date and time */
COL_DELTA_TIME, /* Delta time */
COL_DELTA_TIME_DIS, /* Delta time displayed*/
+ COL_REL_CONV_TIME, /* Relative time to beginning of conversation */
+ COL_DELTA_CONV_TIME,/* Delta time to last frame in conversation */
COL_DEF_SRC, /* Source address */
COL_RES_SRC, /* Resolved source */
COL_UNRES_SRC, /* Unresolved source */