aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet_info.h
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-10-22 00:21:40 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-10-22 00:21:40 +0000
commitcd02551610d53eac96368c256291161e959c16b1 (patch)
treed6b9a42024a93ad553f620d72a1d016f0259f356 /epan/packet_info.h
parent961ff011497d48c1a9eef41b43b9c40d045925d0 (diff)
add a tcp_tree field to packet_info so that we can access the tree from tcp_dissect_pdus() (and others if need be)
in tcp_dissect_pdus() add a field ( tcp.pdu.size ) to the tree that displays the pdu size. svn path=/trunk/; revision=19655
Diffstat (limited to 'epan/packet_info.h')
-rw-r--r--epan/packet_info.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/packet_info.h b/epan/packet_info.h
index 53707077e0..43f2d673d3 100644
--- a/epan/packet_info.h
+++ b/epan/packet_info.h
@@ -175,6 +175,7 @@ typedef struct _packet_info {
gchar annex_a_used;
guint16 profinet_type; /* the type of PROFINET packet (0: not a PROFINET packet) */
void *usb_conv_info;
+ void *tcp_tree; /* proto_tree for the tcp layer */
} packet_info;
#endif /* __PACKET_INFO_H__ */