Home
last modified time | relevance | path

Searched refs:minRTT (Results 1 – 2 of 2) sorted by relevance

/freebsd-12-stable/sys/netinet/
Dsctp_cc_functions.c1876 return (ca->minRTT == 0 ? htcp_cong_time(ca) : htcp_cong_time(ca) / ca->minRTT); in htcp_ccount()
1907 if (net->cc_mod.htcp_ca.minRTT > srtt || !net->cc_mod.htcp_ca.minRTT) in measure_rtt()
1908 net->cc_mod.htcp_ca.minRTT = srtt; in measure_rtt()
1912 if (net->cc_mod.htcp_ca.maxRTT < net->cc_mod.htcp_ca.minRTT) in measure_rtt()
1913 net->cc_mod.htcp_ca.maxRTT = net->cc_mod.htcp_ca.minRTT; in measure_rtt()
1940 (now - net->cc_mod.htcp_ca.lasttime >= net->cc_mod.htcp_ca.minRTT) && in measure_achieved_throughput()
1941 (net->cc_mod.htcp_ca.minRTT > 0)) { in measure_achieved_throughput()
1960 htcp_beta_update(struct htcp *ca, uint32_t minRTT, uint32_t maxRTT) in htcp_beta_update() argument
1975 if (ca->modeswitch && minRTT > sctp_msecs_to_ticks(10) && maxRTT) { in htcp_beta_update()
1976 ca->beta = (minRTT << 7) / maxRTT; in htcp_beta_update()
[all …]
Dsctp_structs.h209 uint32_t minRTT; member