What is a TCP window update?

前端 未结 7 827
伪装坚强ぢ
伪装坚强ぢ 2021-01-30 18:38

I\'m making my own custom server software for a game in Java (the game and original server software were written with Java). There isn\'t any protocol documentation available, s

相关标签:
7条回答
  • 2021-01-30 19:15

    TCP WindowUpdate - This indicates that the segment was a pure WindowUpdate segment. A WindowUpdate occurs when the application on the receiving side has consumed already received data from the RX buffer causing the TCP layer to send a WindowUpdate to the other side to indicate that there is now more space available in the buffer. Typically seen after a TCP ZeroWindow condition has occurred. Once the application on the receiver retrieves data from the TCP buffer, thereby freeing up space, the receiver should notify the sender that the TCP ZeroWindow condition no longer exists by sending a TCP WindowUpdate that advertises the current window size.

    https://wiki.wireshark.org/TCP_Analyze_Sequence_Numbers

    0 讨论(0)
提交回复
热议问题