aboutsummaryrefslogtreecommitdiffstats
path: root/epan/follow.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-11-14 17:37:40 +0000
committerGerald Combs <gerald@wireshark.org>2013-11-14 17:37:40 +0000
commit190bdc32de952cc679c25f61d47e2dfab41c29e7 (patch)
treede80eb71b731298780f01eeea92448fe541684a8 /epan/follow.h
parent2809240ead3af25b531ae3048b6e437dbf1ab004 (diff)
Add packet information and selection to the Follow Stream dialog.
Collect packet numbers when following streams so that we can correlate text positions with packets. Add a FollowStreamText class so that we can track mouse events. Add a hint label that shows the packet under the cursor along with packet counts and the number of "turns". Add the packet number to the C array dump. Note that dumping to YAML might be useful for Scapy users. svn path=/trunk/; revision=53314
Diffstat (limited to 'epan/follow.h')
-rw-r--r--epan/follow.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/follow.h b/epan/follow.h
index b1e02dbcad..5c23feae41 100644
--- a/epan/follow.h
+++ b/epan/follow.h
@@ -44,6 +44,7 @@ typedef struct _tcp_stream_chunk {
guint8 src_addr[MAX_IPADDR_LEN];
guint16 src_port;
guint32 dlen;
+ guint32 packet_num;
} tcp_stream_chunk;
/** Build a follow filter based on the current packet's conversation.
@@ -84,7 +85,7 @@ WS_DLL_PUBLIC
guint32 get_follow_tcp_index(void);
void reassemble_tcp( guint32, guint32, guint32, guint32, const char*, guint32,
- int, address *, address *, guint, guint );
+ int, address *, address *, guint, guint, guint32 );
WS_DLL_PUBLIC
void reset_tcp_reassembly( void );