Jump to content

Fast retransmit: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
No edit summary
m cat
Line 10: Line 10:
* [http://www.eventhelix.com/RealtimeMantra/Networking/TCP_Fast_Retransmit_and_Recovery.pdf TCP Fast Retransmit and Recovery Explained via a Sequence Diagram]
* [http://www.eventhelix.com/RealtimeMantra/Networking/TCP_Fast_Retransmit_and_Recovery.pdf TCP Fast Retransmit and Recovery Explained via a Sequence Diagram]


[[Category:TCP/IP]]
{{Uncategorizedstub|date=August 2008}}



{{compu-network-stub}}
{{compu-network-stub}}

Revision as of 08:47, 18 September 2008

Fast Retransmit is an enhancement to TCP which reduces the time a sender waits before retransmitting a lost segment.

A TCP sender uses timers to recognize lost segments. If an acknowledgement is not received for a particular segment within a specified time (a function of the estimated Round-trip delay time), the sender will assume the segment was lost in the network, and will retransmit the segment.

The fast retransmit enhancement works as follows: if a TCP sender receives three duplicate acknowledgements with the same acknowledge number (that is, a total of four acknowledgements with the same acknowledgement number), the sender can be reasonably confident that the segment with the next higher sequence number was dropped, and will not arrive out of order. The sender will then retransmit the packet that was presumed dropped before waiting for its timeout.