diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2003-12-06 06:09:13 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2003-12-06 06:09:13 +0000 |
commit | 058ef64db8ce40909a18c91ab4805804362f80cb (patch) | |
tree | 767a7824daa712556971559e29e563658d643d51 /print.h | |
parent | 33b25ac15eac2e2cb4269377c41eada622c81fc1 (diff) | |
download | wireshark-058ef64db8ce40909a18c91ab4805804362f80cb.tar.gz wireshark-058ef64db8ce40909a18c91ab4805804362f80cb.tar.bz2 wireshark-058ef64db8ce40909a18c91ab4805804362f80cb.zip |
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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 */ |