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 61588f9d90
commit d4b169a6de
4 changed files with 19 additions and 6 deletions

View File

@@ -225,6 +225,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;