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

  /src/sys/netinet/
tcp_congctl.c 439 tp->snd_ssthresh = win * tp->t_segsz;
441 tp->snd_cwnd = tp->snd_ssthresh;
496 tp->snd_cwnd = tp->snd_ssthresh + tp->t_segsz * tp->t_dupacks;
554 tp->snd_ssthresh = win * tp->t_segsz;
578 if (tp->snd_cwnd > tp->snd_ssthresh)
579 tp->snd_cwnd = tp->snd_ssthresh;
606 if (cw >= tp->snd_ssthresh) {
637 if (cw >= tp->snd_ssthresh) {
755 * snd_ssthresh outstanding data. But in case we
759 if (SEQ_SUB(tp->snd_max, th->th_ack) < tp->snd_ssthresh)
    [all...]
tcp_var.h 303 u_long snd_ssthresh; /* snd_cwnd size threshold for member in struct:tcpcb
tcp_subr.c 883 .snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT,
1110 (i = tp->snd_ssthresh) && rt->rt_rmx.rmx_ssthresh) ||
1813 tp->snd_ssthresh = uimax(2 * mss, rt->rt_rmx.rmx_ssthresh);
tcp_output.c 391 tp->snd_ssthresh = uimax((tp->snd_ssthresh / tp->t_segsz)
tcp_usrreq.c 231 ti->tcpi_snd_ssthresh = tp->snd_ssthresh;
  /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",
1559 (unsigned long long)mypcb.snd_ssthresh);

Completed in 19 milliseconds