What is a TCP window update?

前端 未结 7 862
伪装坚强ぢ
伪装坚强ぢ 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 18:52

    This is normally just a trigger, not the cause of your problem.

    For example, if you use NIO selector, a window update may trigger the wake up of a writing channel. That in turn triggers the faulty logic in your code.

    Get a stacktrace and it will show you the root cause.

提交回复
热议问题