Updated EN_KCP Feature (markdown)

winlin 2017-02-21 16:58:29 +08:00
parent 2d68d22c3e
commit 38cf16298b

@ -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.
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).
#### Fast Retransmission