aboutsummaryrefslogtreecommitdiffstats
path: root/epan/frame_data.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-05-03 01:19:55 +0000
committerGuy Harris <guy@alum.mit.edu>2011-05-03 01:19:55 +0000
commitb42fab3a61e7cd30fdb080a8d325c4d53e466fc6 (patch)
treecec86e3788874081101f6aa1535e400c83b30a08 /epan/frame_data.h
parent11565cd07064ea83ccfe4d868e9774b293008f45 (diff)
TShark doesn't need column text attached to each frame; move col_text
and col_text_len from the frame_data structure to the PacketRecord structure. svn path=/trunk/; revision=36967
Diffstat (limited to 'epan/frame_data.h')
-rw-r--r--epan/frame_data.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/epan/frame_data.h b/epan/frame_data.h
index bf1a7ca95e..f472fd7d0f 100644
--- a/epan/frame_data.h
+++ b/epan/frame_data.h
@@ -63,9 +63,6 @@ typedef struct _frame_data {
nstime_t rel_ts; /**< Relative timestamp (yes, it can be negative) */
nstime_t del_dis_ts; /**< Delta timestamp to previous displayed frame (yes, it can be negative) */
nstime_t del_cap_ts; /**< Delta timestamp to previous captured frame (yes, it can be negative) */
-
- gchar **col_text; /**< The column text for some columns, see colum_utils */
- guint *col_text_len; /**< The length of the column text strings in 'col_text' */
} frame_data;
/**