aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-12-10 00:12:59 +0000
committerGuy Harris <guy@alum.mit.edu>2002-12-10 00:12:59 +0000
commit644d19129a55c272f4be1ed989750058bb85d334 (patch)
treecb3b4d082fe22fce36853808640c4b2c004b6a23 /epan
parentbc06f2e440a7d2b23bab5bd0b3ccabc08bddba54 (diff)
From Alfred Koebler: add support for a column for the interface and
direction in Firewall-1 monitor files. svn path=/trunk/; revision=6771
Diffstat (limited to 'epan')
-rw-r--r--epan/column-utils.c3
-rw-r--r--epan/column_info.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/epan/column-utils.c b/epan/column-utils.c
index 6238ab74af..7a01166dfb 100644
--- a/epan/column-utils.c
+++ b/epan/column-utils.c
@@ -1,7 +1,7 @@
/* column-utils.c
* Routines for column utilities.
*
- * $Id: column-utils.c,v 1.28 2002/12/08 02:32:35 gerald Exp $
+ * $Id: column-utils.c,v 1.29 2002/12/10 00:12:59 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -678,6 +678,7 @@ fill_in_columns(packet_info *pinfo)
case COL_PROTOCOL: /* currently done by dissectors */
case COL_INFO: /* currently done by dissectors */
+ case COL_IF_DIR: /* currently done by dissectors */
break;
case COL_PACKET_LENGTH:
diff --git a/epan/column_info.h b/epan/column_info.h
index 6aa86964a5..f88b82f637 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.4 2002/12/08 02:32:36 gerald Exp $
+ * $Id: column_info.h,v 1.5 2002/12/10 00:12:59 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -87,6 +87,7 @@ enum {
COL_PACKET_LENGTH, /* Packet length in bytes */
COL_OXID, /* Fibre Channel OXID */
COL_RXID, /* Fibre Channel RXID */
+ COL_IF_DIR, /* FW-1 monitor interface/direction */
NUM_COL_FMTS /* Should always be last */
};