summaryrefslogtreecommitdiff
path: root/epan/frame_data.h
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2008-03-01 05:16:45 +0000
committerStephen Fisher <steve@stephen-fisher.com>2008-03-01 05:16:45 +0000
commit56226b49b8818f12ccaef777f427834958dc5dba (patch)
tree7b42047b1a68cbcc4e11173f6726c47b25c6ae3e /epan/frame_data.h
parent61caa0b5b9bd530493e6a66fb9b6e38c1b29404a (diff)
downloadwireshark-56226b49b8818f12ccaef777f427834958dc5dba.tar.gz
Custom column updates:
- Change apply / prepare / ... as filter to use the field's value, which is now stored in fdata as well as cinfo. Now we don't have to reprocess the entire packet list when using these features. This also prevents the use of these features from overwriting custom column information. (custom columns can now be used in apply / prepare ... as filter) - Break col_expr and col_expr_val out into a struct that is included not only in cinfo, but now also fdata. - Have col_custom_set_fstr() quote FT_STRING & FT_STRINGZ when storing the col_expr_val value (for filter creation). svn path=/trunk/; revision=24511
Diffstat (limited to 'epan/frame_data.h')
-rw-r--r--epan/frame_data.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/frame_data.h b/epan/frame_data.h
index 52f9ef798c..f8332803e9 100644
--- a/epan/frame_data.h
+++ b/epan/frame_data.h
@@ -58,6 +58,7 @@ typedef struct _frame_data {
unsigned int ref_time : 1; /* 1 = marked as a reference time frame, 0 = normal */
} flags;
void *color_filter; /* Per-packet matching color_filter_t object */
+ col_expr_t col_expr; /* Column expressions & values */
} frame_data;
/*