partly fixed bug #25882: TCP hangs on MSS > pcb->snd_wnd (by not creating segments bigger than half the window)

This commit is contained in:
goldsimon
2012-02-12 14:14:19 +01:00
parent 16555ad12e
commit 7d0dab9d7d
4 changed files with 19 additions and 6 deletions

View File

@@ -227,6 +227,7 @@ struct tcp_pcb {
window update. */
u32_t snd_lbb; /* Sequence number of next byte to be buffered. */
u16_t snd_wnd; /* sender window */
u16_t snd_wnd_max; /* the maximum sender window announced by the remote host */
u16_t acked;