Updated EN_KCP Feature (markdown)

winlin 2017-02-21 17:00:39 +08:00
parent 38cf16298b
commit 8828012777

@ -8,7 +8,7 @@ When retransmission, TCP use exponential backoff(Karn/Partridge Algorithm) for c
#### Retransmit All or Partial
For retransmission in TCP, all the data after the lost segment will be retransmitted in practice(for example, ACK lost with out SACK, or maybe only retransmit one packet but network is so heavy that more packets are retransmitted), while KCP only retransmit the really dropped part of segment(KCP use more ACK, so the lost of ACK is less than TCP).
For retransmission in TCP, all the data after the lost segment will be retransmitted in practice(for example, ACK lost without SACK, or maybe only retransmit one packet but network is so heavy that more packets are retransmitted), while KCP only retransmit the really dropped part of segment(KCP use more ACK, so the lost of ACK is less than TCP).
#### Fast Retransmission