aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tcp.h
diff options
context:
space:
mode:
authorSake Blok <sake@euronet.nl>2011-01-08 15:51:38 +0000
committerSake Blok <sake@euronet.nl>2011-01-08 15:51:38 +0000
commitea4ac173d0e97206bede503b8551df76b40b19e0 (patch)
tree560a99439b5d34abf21c7fe87ee59109646a7a21 /epan/dissectors/packet-tcp.h
parent4a8fa72830eab05e3bab3b79f75bc09bfa744f75 (diff)
Add "tcp.window_size_value" and "tcp.window_size_scalefactor" conform
the discussion in bug 5541. Since we now have the window size value as well as the scaled window size, there is no need anymore for the tcp preference "tcp_window_scaling". svn path=/trunk/; revision=35425
Diffstat (limited to 'epan/dissectors/packet-tcp.h')
-rw-r--r--epan/dissectors/packet-tcp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-tcp.h b/epan/dissectors/packet-tcp.h
index 7816e1db77..e9bd011766 100644
--- a/epan/dissectors/packet-tcp.h
+++ b/epan/dissectors/packet-tcp.h
@@ -153,8 +153,8 @@ typedef struct _tcp_flow_t {
* distinguish between retransmission,
* fast retransmissions and outoforder
*/
- guint32 window; /* last seen window */
- gint16 win_scale; /* -1 is we dont know */
+ guint32 window; /* last seen window */
+ gint16 win_scale; /* -1 is we dont know, -2 is window scaling is not used */
gint16 scps_capable; /* flow advertised scps capabilities */
guint16 maxsizeacked; /* 0 if not yet known */
gboolean valid_bif; /* if lost pkts, disable BiF until ACK is recvd */