Slight modification of RTO floor calculation.

This commit is contained in:
Garrett Wollman 1996-03-25 20:13:21 +00:00
parent 6ed666afb9
commit 9e2874b067
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=14819
2 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)tcp_input.c 8.12 (Berkeley) 5/24/95
* $Id: tcp_input.c,v 1.38 1996/03/11 15:13:29 davidg Exp $
* $Id: tcp_input.c,v 1.39 1996/03/22 18:09:20 wollman Exp $
*/
#ifndef TUBA_INCLUDE
@ -1923,7 +1923,7 @@ tcp_xmit_timer(tp, rtt)
tp->t_rttmin, TCPTV_REXMTMAX);
#else /* Peterson */
TCPT_RANGESET(tp->t_rxtcur, TCP_REXMTVAL(tp),
max(tp->t_rttmin, TCPTV_MIN + rtt - 1), TCPTV_REXMTMAX);
max(tp->t_rttmin, rtt + 2), TCPTV_REXMTMAX);
#endif
/*

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)tcp_input.c 8.12 (Berkeley) 5/24/95
* $Id: tcp_input.c,v 1.38 1996/03/11 15:13:29 davidg Exp $
* $Id: tcp_input.c,v 1.39 1996/03/22 18:09:20 wollman Exp $
*/
#ifndef TUBA_INCLUDE
@ -1923,7 +1923,7 @@ tcp_xmit_timer(tp, rtt)
tp->t_rttmin, TCPTV_REXMTMAX);
#else /* Peterson */
TCPT_RANGESET(tp->t_rxtcur, TCP_REXMTVAL(tp),
max(tp->t_rttmin, TCPTV_MIN + rtt - 1), TCPTV_REXMTMAX);
max(tp->t_rttmin, rtt + 2), TCPTV_REXMTMAX);
#endif
/*