I understand the TCP window mechanism and that all ACK packets contain advertized Window size which keeps fluctuating. If so, why Wireshark marks certain packets as Window update packet and why is it important to observe? Changing Window sizes is not normal? asked 21 Nov '13, 22:31 xkgt edited 22 Nov '13, 02:45 grahamb ♦ |
2 Answers:
Basically, all new information the TCP layer of such a packet contains is a different window size. And yes, changing window sizes is normal. You often see it when it gets close to zero (or even down to zero) when a higher window size is advertised, which is used to tell the sender to keep going. But a lot of systems also advertise new window sizes even when they're not close to zero, just to let the sender know that they have more buffer space available for incoming packets. answered 21 Nov '13, 22:46 Jasper ♦♦ edited 21 Nov '13, 22:48 |
see the explanation of @Jasper.
A window size change is at least nothing abnormal and thus observing it is not necessary, unless the window size drops to zero or you have performance problems of any kind. Regards answered 22 Nov '13, 02:04 Kurt Knochner ♦ |