Updated EN_KCP Feature (markdown)

winlin 2017-02-21 14:53:10 +08:00
parent 74c28cb55d
commit 4d41d8ae60

@ -12,7 +12,7 @@ For retransmission in TCP, all the data after the lost segment will be retransmi
#### Fast Retransmission
For example, the sender has sent packets 1,2,3,4,5, then got the ACK message from peer 1,3,4,5. When got ACK 1,3, KCP will notice the packet 2 maybe dropped; when got ACK 1,3,4, the packet 2 almost dropped and KCP will directly retransmit packet 2 without wait for timeout. This algorithm can improve the transport speed when network is not very good and dropping some packets.
For example, the sender has sent segments 1,2,3,4,5, then got the ACK message from peer 1,3,4,5. When got ACK 1,3, KCP notice the segment 2 maybe dropped; when got ACK 1,3,4, the segment 2 almost dropped and KCP will directly retransmit segment 2 without wait util timeout. This algorithm can improve the transport speed when network is heavy and segment loss occurs.
#### Delay ACK or Realtime