aboutsummaryrefslogtreecommitdiffstats
path: root/epan/column-utils.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2009-07-27 03:34:57 +0000
committerAnders Broman <anders.broman@ericsson.com>2009-07-27 03:34:57 +0000
commit9ca4ac2bede829da3acd836875e6209e02bb9259 (patch)
tree864dc8085671dd13955d86dfbe6db79ded12ec1f /epan/column-utils.h
parente040dac13fd8663834982f22fc0bbe37a3b6721c (diff)
From Kovarththanan Rajaratnam:
Use frame_data values . svn path=/trunk/; revision=29202
Diffstat (limited to 'epan/column-utils.h')
-rw-r--r--epan/column-utils.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/epan/column-utils.h b/epan/column-utils.h
index 6b104ccf71..c25f46c319 100644
--- a/epan/column-utils.h
+++ b/epan/column-utils.h
@@ -66,6 +66,12 @@ extern void col_init(column_info *cinfo);
*/
extern void col_set_fmt_time(frame_data *fd, column_info *cinfo, gint fmt, gint col);
+/** Fill in all columns of the given packet which are based on values from frame_data.
+ *
+ * Internal, don't use this in dissectors!
+ */
+extern void col_fill_in_frame_data(frame_data *fd, column_info *cinfo, gint col);
+
/** Fill in all columns of the given packet.
*
* Internal, don't use this in dissectors!
@@ -153,6 +159,7 @@ void col_custom_prime_edt(epan_dissect_t *edt, column_info *cinfo);
/* For internal Wireshark use only. Not to be called from dissectors. */
gboolean have_custom_cols(column_info *cinfo);
gboolean col_has_time_fmt(column_info *cinfo, gint col);
+gboolean col_based_on_frame_data(column_info *cinfo, gint col);
/** Append the given text to a column element, the text will be copied.
*