Deleted Added
full compact
34c34
< * $FreeBSD: head/sys/netinet/tcp_output.c 58698 2000-03-27 19:14:27Z jlemon $
---
> * $FreeBSD: head/sys/netinet/tcp_output.c 60067 2000-05-06 03:31:09Z jlemon $
100a101,103
> int tcp_do_newreno = 1;
> SYSCTL_INT(_net_inet_tcp, OID_AUTO, newreno, CTLFLAG_RW, &tcp_do_newreno,
> 0, "Enable NewReno Algorithms");
120a124
> int maxburst = TCP_MAXBURST;
781,782d784
< callout_reset(tp->tt_rexmt, tp->t_rxtcur,
< tcp_timer_rexmt, tp);
786a789,790
> callout_reset(tp->tt_rexmt, tp->t_rxtcur,
> tcp_timer_rexmt, tp);
892c896
< if (sendalot)
---
> if (sendalot && (!tcp_do_newreno || --maxburst))