Next: 28.1.1.0.2 Round-Trip Time Estimation
Up: 28.1.1 The Base TCP
Previous: 28.1.1 The Base TCP
Tahoe TCP assumes a packet has been lost (due to congestion)
when it observes NUMDUPACKS (defined in tcp.h, currently 3)
duplicate ACKs, or when a retransmission timer expires.
In either case, Tahoe TCP reacts by setting ssthresh_ to half
of the current window size (the minimum of cwnd_ and window_)
or 2, whichever is larger.
It then initializes cwnd_ back to the value of
windowInit_. This will typically cause the TCP to
enter slow-start.
2000-08-24