aboutsummaryrefslogtreecommitdiffstats
path: root/prefs.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-09-08 21:44:42 +0000
committerGuy Harris <guy@alum.mit.edu>2003-09-08 21:44:42 +0000
commit81fc518ec6eb6366b2143e6b56d0b35307a76812 (patch)
treebd4a44095ff701e0c5af8a301d4fb1c8d61d39b3 /prefs.h
parent3185b945fbe1912d86f77aa9be84eb73dffb3d28 (diff)
From Nathan Jennings:
support for user-supplied interface descriptions; support for hiding interfaces in drop-down list in capture dialog. Clean up comments written to preferences file. svn path=/trunk/; revision=8419
Diffstat (limited to 'prefs.h')
-rw-r--r--prefs.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/prefs.h b/prefs.h
index 0902fde1df..33d8accdfc 100644
--- a/prefs.h
+++ b/prefs.h
@@ -1,7 +1,7 @@
/* prefs.h
* Definitions for preference handling routines
*
- * $Id: prefs.h,v 1.44 2003/08/07 00:41:26 guy Exp $
+ * $Id: prefs.h,v 1.45 2003/09/08 21:44:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -35,6 +35,9 @@
#define DEF_WIDTH 750
#define DEF_HEIGHT 550
+#define MAX_VAR_LEN 48
+#define MAX_VAL_LEN 1024
+
/*
* Convert a string listing name resolution types to a bitmask of
* those types.
@@ -71,6 +74,8 @@ typedef struct _e_prefs {
guint32 name_resolve;
gint name_resolve_concurrency;
gchar *capture_device;
+ gchar *capture_devices_descr;
+ gchar *capture_devices_hide;
gboolean capture_prom_mode;
gboolean capture_real_time;
gboolean capture_auto_scroll;