HomeSort by: relevance | last modified time | path
    Searched refs:snd_cwnd (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/netinet/
tcp_congctl.c 435 win = ulmin(tp->snd_wnd, tp->snd_cwnd) * betaa / betab / tp->t_segsz;
441 tp->snd_cwnd = tp->snd_ssthresh;
489 tp->snd_cwnd = tp->t_segsz;
494 tp->snd_cwnd = tp->t_segsz;
496 tp->snd_cwnd = tp->snd_ssthresh + tp->t_segsz * tp->t_dupacks;
549 win = ulmin(tp->snd_wnd, tp->snd_cwnd) / 2 / tp->t_segsz;
553 tp->snd_cwnd = tp->t_segsz;
578 if (tp->snd_cwnd > tp->snd_ssthresh)
579 tp->snd_cwnd = tp->snd_ssthresh;
595 u_int cw = tp->snd_cwnd;
    [all...]
tcp_output.c 389 tp->snd_cwnd = uimax((tp->snd_cwnd / tp->t_segsz)
610 tp->snd_cwnd = uimin(tp->snd_cwnd,
629 tp->snd_cwnd = uimin(tp->snd_cwnd,
674 win = uimin(tp->snd_wnd, tp->snd_cwnd);
681 * If we retransmit in fast recovery mode, decrement snd_cwnd, since
683 * now, and we previously incremented snd_cwnd in tcp_input().
702 cwin = uimin(tp->snd_wnd, tp->snd_cwnd) - sack_bytes_rxmt
    [all...]
tcp_var.h 302 u_long snd_cwnd; /* congestion-controlled window */ member in struct:tcpcb
303 u_long snd_ssthresh; /* snd_cwnd size threshold for
tcp_subr.c 882 .snd_cwnd = TCP_MAXWIN << TCP_MAX_WINSHIFT,
1521 tp->snd_cwnd = tp->t_segsz;
1578 tp->snd_cwnd =
1639 tp->snd_cwnd = TCP_INITIAL_WINDOW(tcp_init_win,
tcp_syncache.c 746 tp->snd_cwnd = tp->t_peermss;
755 tp->snd_cwnd = TCP_INITIAL_WINDOW(ss, tp->t_peermss);
tcp_input.c 1840 tp->snd_cwnd >= tp->snd_wnd &&
2096 tp->snd_cwnd = tp->t_peermss;
2105 tp->snd_cwnd = TCP_INITIAL_WINDOW(ss, tp->t_peermss);
2499 tp->snd_cwnd += tp->t_segsz;
tcp_usrreq.c 233 ti->tcpi_snd_cwnd = tp->snd_cwnd / tp->t_segsz;
  /src/usr.bin/netstat/
inet.c 1105 printf("rcv_adv %u, snd_max %u, snd_cwnd %lu, snd_ssthresh %lu\n",
1106 tcpcb.rcv_adv, tcpcb.snd_max, tcpcb.snd_cwnd, tcpcb.snd_ssthresh);
inet6.c 1557 printf("rcv_adv %u, snd_max %u, snd_cwnd %llu, snd_ssthresh %llu\n",
1558 mypcb.rcv_adv, mypcb.snd_max, (unsigned long long)mypcb.snd_cwnd,

Completed in 70 milliseconds