[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lwip-devel] [bug #32417] TCP_OVERSIZE seems to have problems with (fast
From: |
tao tang |
Subject: |
[lwip-devel] [bug #32417] TCP_OVERSIZE seems to have problems with (fast-)retransmission |
Date: |
Wed, 31 Aug 2011 14:54:25 +0000 |
User-agent: |
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.20) Gecko/20110803 Firefox/3.6.20 |
Follow-up Comment #2, bug #32417 (project lwip):
When *seqno* is cycled from 2^32 to 0, it's low possible that the unack_list
will become an unordered list.
Supposed that:
1: unack_list is NULL;
2: cwnd >= 8 && MSS == 1024
3: unsent_list is:
packet1: seqno = 0xFFFFFF00;
packet2: seqno = 0x00000300;
packet3: seqno = 0x00000700;
...;
packet8: seqno = 0x00001B00;
4: after tcp_output called, Fast-retransmission occurred(happens on a spurious
event) , retransmitting the first segment of unack_list and now the
unsent_list is(unordered unack_list):
packet2: seqno = 0x00000300;
packet3: seqno = 0x00000700;
...;
packet8: seqno = 0x00001B00;
packet1: seqno = 0xFFFFFF00;
5: unfortunately, timeout-retransmission occurred, the cwnd is reset to 1.
6: after total TCP_MAXRTX times retransmit packet2, the pcb will be purged.
_______________________________________________________
Reply to this item at:
<http://savannah.nongnu.org/bugs/?32417>
_______________________________________________
Message sent via/by Savannah
http://savannah.nongnu.org/
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [lwip-devel] [bug #32417] TCP_OVERSIZE seems to have problems with (fast-)retransmission,
tao tang <=