summaryrefslogtreecommitdiff
path: root/ui/tap-tcp-stream.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-09-09 01:40:06 +0000
committerGerald Combs <gerald@wireshark.org>2013-09-09 01:40:06 +0000
commit829c1ed25ec2734d9c6fec6d8cbcc2b6e69ff6f1 (patch)
treea33d1faa4ba754b7a9c831c61fd8dff5bd8b1130 /ui/tap-tcp-stream.h
parent077d252fd92c4a41e3d5396e2f869c6804ce86ef (diff)
downloadwireshark-829c1ed25ec2734d9c6fec6d8cbcc2b6e69ff6f1.tar.gz
Add the TCP window scaling graph. Add zoom selections.
Rename some methods. Add the ability to toggle time and sequence number origins. Add more keyboard shortcuts. Comment out abs_secs abs_usecs in the segment struct since it looks like we aren't using them. Make sure we stay in the same TCP stream. svn path=/trunk/; revision=51856
Diffstat (limited to 'ui/tap-tcp-stream.h')
-rw-r--r--ui/tap-tcp-stream.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/tap-tcp-stream.h b/ui/tap-tcp-stream.h
index 56953adc4e..1aba3c842d 100644
--- a/ui/tap-tcp-stream.h
+++ b/ui/tap-tcp-stream.h
@@ -44,8 +44,10 @@ struct segment {
guint32 num;
guint32 rel_secs;
guint32 rel_usecs;
+ /* Currently unused.
guint32 abs_secs;
guint32 abs_usecs;
+ */
guint32 th_seq;
guint32 th_ack;
@@ -70,6 +72,7 @@ struct tcp_graph {
guint16 src_port;
address dst_address;
guint16 dst_port;
+ guint32 stream;
/* Should this be a map or tree instead? */
struct segment *segments;
};