aboutsummaryrefslogtreecommitdiffstats
path: root/epan/column_info.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-01-11 08:21:02 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-01-11 08:21:02 +0000
commitad3faeba02685889d52d9c9c28de2e82598876ae (patch)
treeed2b952f6cb757b1d61c582b8d76806ba445d4a0 /epan/column_info.h
parent18070e157048aaa1d3c4a6ae9589c91d800256ee (diff)
From Jirka Novak:
Support for generating filter expressions based on packet list column values Support for adding filter expressions generated from column or protocol tree field values to the current expression rather than replacing the current expression git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4522 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/column_info.h')
-rw-r--r--epan/column_info.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/column_info.h b/epan/column_info.h
index 48ad0383d1..cfe0c24a5c 100644
--- a/epan/column_info.h
+++ b/epan/column_info.h
@@ -1,7 +1,7 @@
/* column.h
* Definitions for column structures and routines
*
- * $Id: column_info.h,v 1.1 2001/04/01 03:42:00 hagbard Exp $
+ * $Id: column_info.h,v 1.2 2002/01/11 08:21:00 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -40,6 +40,8 @@ typedef struct _column_info {
gchar **col_title; /* Column titles */
gchar **col_data; /* Column data */
gchar **col_buf; /* Buffer into which to copy data for column */
+ gchar **col_expr; /* Filter expression */
+ gchar **col_expr_val; /* Value for filter expression */
gboolean writable; /* Are we stil writing to the columns? */
} column_info;