aboutsummaryrefslogtreecommitdiffstats
path: root/packet-frame.h
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2003-12-06 06:09:13 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2003-12-06 06:09:13 +0000
commitef3e90ad638190515a0bdf81b721029a5b4848ab (patch)
tree767a7824daa712556971559e29e563658d643d51 /packet-frame.h
parent5e3d1912ec2e59c67b706da08fe0160198bc9ae0 (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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9180 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-frame.h')
-rw-r--r--packet-frame.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/packet-frame.h b/packet-frame.h
index 995e378336..1ed34b4841 100644
--- a/packet-frame.h
+++ b/packet-frame.h
@@ -2,7 +2,7 @@
*
* Top-most dissector. Decides dissector based on Wiretap Encapsulation Type.
*
- * $Id: packet-frame.h,v 1.6 2003/10/23 05:01:39 guy Exp $
+ * $Id: packet-frame.h,v 1.7 2003/12/06 06:09:10 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -41,3 +41,9 @@ show_reported_bounds_error(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);
* ReportedBoundsError exceptions).
*/
extern int proto_malformed;
+
+extern int proto_frame;
+extern int hf_frame_arrival_time;
+extern int hf_frame_number;
+extern int hf_frame_packet_len;
+extern int hf_frame_capture_len;