aboutsummaryrefslogtreecommitdiffstats
path: root/print.h
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2003-12-06 06:09:13 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2003-12-06 06:09:13 +0000
commit058ef64db8ce40909a18c91ab4805804362f80cb (patch)
tree767a7824daa712556971559e29e563658d643d51 /print.h
parent33b25ac15eac2e2cb4269377c41eada622c81fc1 (diff)
Add the ability to print packet dissections in PDML (an XML-based format)
to tethereal. It could be added to Ethereal, but the GUI changes to allow the user to select PDML as a print format have not been added. Provide a python module (EtherealXML.py) to help parse PDML. Provide a sample app (msnchat) which uses tethereal and EtherealXML.py to reconstruct MSN Chat sessions from packet capture files. It produces a nice HTML report of the chat sessions. Document tethereal's PDML and EtherealXML.py usage in doc/README.xml-output Update tethereal's manpage to reflect the new [-T pdml|ps|text] option svn path=/trunk/; revision=9180
Diffstat (limited to 'print.h')
-rw-r--r--print.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/print.h b/print.h
index 4ac47484c3..201be4da47 100644
--- a/print.h
+++ b/print.h
@@ -1,7 +1,7 @@
/* print.h
* Definitions for printing packet analysis trees.
*
- * $Id: print.h,v 1.30 2003/09/10 22:23:58 guy Exp $
+ * $Id: print.h,v 1.31 2003/12/06 06:09:10 gram Exp $
*
* Gilbert Ramirez <gram@alumni.rice.edu>
*
@@ -31,6 +31,7 @@
#define PR_FMT_TEXT 0
#define PR_FMT_PS 1
+#define PR_FMT_PDML 2
typedef struct {
gboolean to_file; /* TRUE if we're printing to a file */