Searched refs:ssthresh (Results 1 – 11 of 11) sorted by relevance
/freebsd/sys/netinet/ |
H A D | sctp_cc_functions.c | 102 net->ssthresh = assoc->peers_rwnd; in sctp_set_initial_cc_param() 127 t_ssthresh += net->ssthresh; in sctp_cwnd_update_after_fr() 159 net->ssthresh = (uint32_t)(((uint64_t)4 * in sctp_cwnd_update_after_fr() 161 (uint64_t)net->ssthresh) / in sctp_cwnd_update_after_fr() 179 net->ssthresh = (uint32_t)(((uint64_t)4 * in sctp_cwnd_update_after_fr() 187 (net->ssthresh < net->cwnd - t_cwnd / 2)) { in sctp_cwnd_update_after_fr() 188 net->ssthresh = net->cwnd - t_cwnd / 2; in sctp_cwnd_update_after_fr() 190 if (net->ssthresh < net->mtu) { in sctp_cwnd_update_after_fr() 191 net->ssthresh = net->mtu; in sctp_cwnd_update_after_fr() 194 net->ssthresh = net->cwnd / 2; in sctp_cwnd_update_after_fr() [all …]
|
H A D | tcp_subr.c | 2475 uint32_t ssthresh; in tcp_discardcb() local 2484 ssthresh = tp->snd_ssthresh; in tcp_discardcb() 2485 if (ssthresh != 0 && ssthresh < so->so_snd.sb_hiwat / 2) { in tcp_discardcb() 2490 ssthresh = (ssthresh + tp->t_maxseg / 2) / tp->t_maxseg; in tcp_discardcb() 2491 if (ssthresh < 2) in tcp_discardcb() 2492 ssthresh = 2; in tcp_discardcb() 2493 ssthresh *= (tp->t_maxseg + in tcp_discardcb() 2504 ssthresh = 0; in tcp_discardcb() 2505 metrics.hc_ssthresh = ssthresh; in tcp_discardcb()
|
H A D | sctp_sysctl.c | 537 xraddr.ssthresh = net->ssthresh; in sctp_sysctl_handle_assoclist()
|
H A D | sctp_structs.h | 279 uint32_t ssthresh; /* not sure about this one for split */ member
|
H A D | sctp_uio.h | 1237 uint32_t ssthresh; member
|
H A D | sctp_timer.c | 790 (void *)lnets, lnets->cwnd, lnets->ssthresh); in sctp_mark_all_for_resend()
|
H A D | sctp_input.c | 259 lnet->ssthresh = asoc->peers_rwnd; in sctp_process_init()
|
/freebsd/contrib/netbsd-tests/net/route/ |
H A D | t_route.sh | 236 recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire 252 recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire 268 recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire 286 recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire 311 recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire 326 recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire 342 recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire 360 recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire
|
H A D | t_change.sh | 129 recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire 148 recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire 196 recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire 215 recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire 263 recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire 282 recvpipe sendpipe ssthresh rtt,msec rttvar hopcount mtu expire
|
/freebsd/sys/netinet/cc/ |
H A D | cc_cubic.c | 612 uint32_t ssthresh; in cubic_ssthresh_update() local 627 ssthresh = newreno_cc_cwnd_on_multiplicative_decrease(ccv, maxseg); in cubic_ssthresh_update() 635 ssthresh = cwnd >> 1; in cubic_ssthresh_update() 641 ssthresh = ((uint64_t)cwnd * CUBIC_BETA) >> CUBIC_SHIFT; in cubic_ssthresh_update() 643 CCV(ccv, snd_ssthresh) = max(ssthresh, 2 * maxseg); in cubic_ssthresh_update()
|
/freebsd/sbin/route/ |
H A D | keywords | 49 ssthresh
|