aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2014-12-19 08:08:38 -0500
committerAnders Broman <a.broman58@gmail.com>2015-01-02 00:00:57 +0000
commit07c9492b8d40ed766074679f86c49780277af002 (patch)
tree5a0c6f5d078872b58a7eac1469ce6d2401bf2792 /epan/packet.h
parentf384fa07f945fd73e3f0088c19d640a8c534a791 (diff)
Remove pkt_comment member from packet_info structure.
Change-Id: Ifd3d201a09944e3fc36188f891ea8a584886101d Reviewed-on: https://code.wireshark.org/review/5884 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/packet.h')
-rw-r--r--epan/packet.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/epan/packet.h b/epan/packet.h
index 398eaced25..4e5aff1644 100644
--- a/epan/packet.h
+++ b/epan/packet.h
@@ -595,6 +595,13 @@ extern void free_data_sources(packet_info *pinfo);
*/
WS_DLL_PUBLIC void mark_frame_as_depended_upon(packet_info *pinfo, guint32 frame_num);
+/* Structure passed to the frame dissector */
+typedef struct frame_data_s
+{
+ int file_type_subtype;
+ const gchar *pkt_comment; /**< NULL if not available */
+} frame_data_t;
+
/*
* Dissectors should never modify the record data.
*/