aboutsummaryrefslogtreecommitdiffstats
path: root/ui/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 /ui/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 'ui/follow.h')
-rw-r--r--ui/follow.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/follow.h b/ui/follow.h
index f43df5ddb0..fb364132e4 100644
--- a/ui/follow.h
+++ b/ui/follow.h
@@ -38,6 +38,7 @@ extern "C" {
typedef struct {
gboolean is_from_server;
+ guint32 packet_num;
StringInfo data;
} SslDecryptedRecord;
@@ -73,6 +74,7 @@ typedef enum {
typedef struct {
gboolean is_server;
+ guint32 packet_num;
GByteArray *data;
} follow_record_t;