aboutsummaryrefslogtreecommitdiffstats
path: root/file.h
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-08-24 16:27:23 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-08-24 16:27:23 +0000
commite1bd4fd73f3abecd66396f8f14a385b8fe519f31 (patch)
tree9c479c41c4f149ccf3d42be55616b8c46e7d5578 /file.h
parent5a221703bb04091745ffae3951bb5b19e2a250ba (diff)
Added John McDermott's colorization routines. There's still some
debug printf's in there. svn path=/trunk/; revision=562
Diffstat (limited to 'file.h')
-rw-r--r--file.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/file.h b/file.h
index e1b848af5f..7b9da7f7ae 100644
--- a/file.h
+++ b/file.h
@@ -1,7 +1,7 @@
/* file.h
* Definitions for file structures and routines
*
- * $Id: file.h,v 1.40 1999/08/22 07:19:28 guy Exp $
+ * $Id: file.h,v 1.41 1999/08/24 16:27:23 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -44,6 +44,10 @@
#include "dfilter.h"
#endif
+#ifndef __COLORS_H__
+#include "colors.h"
+#endif
+
typedef struct bpf_program bpf_prog;
typedef struct _capture_file {
@@ -66,6 +70,10 @@ typedef struct _capture_file {
wtap *wth; /* Wiretap session */
dfilter *rfcode; /* Compiled read filter program */
gchar *dfilter; /* Display filter string */
+#if 0
+ GNode *dfcode; /* Compiled display filter program */
+#endif
+ colfilter *colors; /* Colors for colorizing packet window */
dfilter *dfcode; /* Compiled display filter program */
#ifdef HAVE_LIBPCAP
gchar *cfilter; /* Capture filter string */