Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: The Source of All Evil <source@NetBSD.ORG>
List: source-changes
Date: 03/19/1998 14:30:02
kml
Thu Mar 19 14:29:34 PST 1998
Update of /cvsroot/src/sys/netinet
In directory nb00:/tmp/cvs-serv4943

Modified Files:
	tcp_input.c tcp_output.c tcp_subr.c tcp_timer.c 
Log Message:
Fix a retransmission bug introduced by the Brakmo and Peterson 
RTO estimation changes.  Under some circumstances it would return a value
of 0, while the old Van Jacobson RTO code would return a minimum of 3.
This would result in 12 retransmissions, each 1 second apart.
This takes care of those instances, and ensures that t_rttmin is
used everywhere as a lower bound.