aboutsummaryrefslogtreecommitdiffstats
path: root/epan/column-utils.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2010-08-30 05:39:02 +0000
committerAnders Broman <anders.broman@ericsson.com>2010-08-30 05:39:02 +0000
commit6d1a0a2e8681eb0ce709a4d164548e865ce32001 (patch)
tree18f621f3211418946010f0b837e26bb0e220190f /epan/column-utils.c
parent6d0780b8ba84c97f08d08b9da65068b2fb715241 (diff)
Doxygen related changes.
svn path=/trunk/; revision=34009
Diffstat (limited to 'epan/column-utils.c')
-rw-r--r--epan/column-utils.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/epan/column-utils.c b/epan/column-utils.c
index 28bc01d472..73bf89e237 100644
--- a/epan/column-utils.c
+++ b/epan/column-utils.c
@@ -1193,6 +1193,17 @@ col_set_fmt_time(const frame_data *fd, column_info *cinfo, const gint fmt, const
}
/* --------------------------- */
+/* Set the given (relative) time to a column element.
+ *
+ * Used by multiple dissectors to set the time in the column
+ * COL_DELTA_CONV_TIME
+ *
+ * @param cinfo the current packet row
+ * @param col the column to use, e.g. COL_INFO
+ * @param ts the time to set in the column
+ * @param fieldname the fieldname to use for creating a filter (when
+ * applying/preparing/copying as filter)
+ */
void
col_set_time(column_info *cinfo, const gint el, const nstime_t *ts, char *fieldname)
{
@@ -1201,7 +1212,7 @@ col_set_time(column_info *cinfo, const gint el, const nstime_t *ts, char *fieldn
if (!CHECK_COL(cinfo, el))
return;
- /* TODO: We don't respect fd->flags.ref_time (no way to access 'fd')
+ /** @todo TODO: We don't respect fd->flags.ref_time (no way to access 'fd')
COL_CHECK_REF_TIME(fd, buf);
*/