aboutsummaryrefslogtreecommitdiffstats
path: root/file.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-09-12 20:23:43 +0000
committerGuy Harris <guy@alum.mit.edu>1999-09-12 20:23:43 +0000
commit3823ab23beb83e6f5b679994325865e1e30c8f26 (patch)
tree30d655380623a7167d26da6d783347f8c52bb9ff /file.h
parent7b2ff4bfe92078932c2270debe5b41564992dc26 (diff)
Add a "Expand all levels"/"Print as displayed" pair of radio buttons to
the "File/Print" dialog box; "Expand all levels" means that all levels of the protocol tree should be printed, while "Print as displayed" means that only those levels shown in the display should be printed. Free the table of column widths once printing is done. svn path=/trunk/; revision=671
Diffstat (limited to 'file.h')
-rw-r--r--file.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/file.h b/file.h
index cb12384344..a81527e0e9 100644
--- a/file.h
+++ b/file.h
@@ -1,7 +1,7 @@
/* file.h
* Definitions for file structures and routines
*
- * $Id: file.h,v 1.43 1999/09/12 06:11:35 guy Exp $
+ * $Id: file.h,v 1.44 1999/09/12 20:23:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -105,6 +105,8 @@ typedef struct {
if not, command string */
gboolean print_summary; /* TRUE if we should just print summary;
FALSE if we should print protocol tree. */
+ gboolean expand_all; /* TRUE if we should expand all levels;
+ FALSE if we should expand as displayed. */
} print_args_t;
int print_packets(capture_file *cf, print_args_t *print_args);