Several years ago a feature was added to TCP that casued soreceive() to

send an ACK right away if data was drained from a TCP socket that had
previously advertised a zero-sized window.  The current code requires the
receive window to be exactly zero for this to kick in.  If window scaling is
enabled and the window is smaller than the scale, then the effective window
that is advertised is zero.  However, in that case the zero-sized window
handling is not enabled because the window is not exactly zero.  The fix
changes the code to check the raw window value against zero.

Reviewed by:	bz
MFC after:	1 week
This commit is contained in:
John Baldwin 2009-11-06 16:55:05 +00:00
parent e1b17582f4
commit c6d9480519
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=198990

View File

@ -992,7 +992,7 @@ tcp_output(struct tcpcb *tp)
* to read more data than can be buffered prior to transmitting on
* the connection.
*/
if (recwin == 0)
if (th->th_win == 0)
tp->t_flags |= TF_RXWIN0SENT;
else
tp->t_flags &= ~TF_RXWIN0SENT;