void
tcp_newreno_cwnd_init_or_reset(struct tcpcb *tp) {
tcp_cc_cwnd_init_or_reset(tp);
-
- /* If stretch ack was auto disabled, re-evaluate the situation */
- tcp_cc_after_idle_stretchack(tp);
}
* greater than or equal to the congestion window.
*/
- register u_int cw = tp->snd_cwnd;
- register u_int incr = tp->t_maxseg;
+ u_int cw = tp->snd_cwnd;
+ u_int incr = tp->t_maxseg;
int acked = 0;
acked = BYTES_ACKED(th, tp);