Home
last modified time | relevance | path

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

/freebsd/sys/netinet/
H A Dsctp_cc_functions.c1862 return (ca->minRTT == 0 ? htcp_cong_time(ca) : htcp_cong_time(ca) / ca->minRTT); in htcp_ccount()
1893 if (net->cc_mod.htcp_ca.minRTT > srtt || !net->cc_mod.htcp_ca.minRTT) in measure_rtt()
1894 net->cc_mod.htcp_ca.minRTT = srtt; in measure_rtt()
1898 if (net->cc_mod.htcp_ca.maxRTT < net->cc_mod.htcp_ca.minRTT) in measure_rtt()
1899 net->cc_mod.htcp_ca.maxRTT = net->cc_mod.htcp_ca.minRTT; in measure_rtt()
1926 (now - net->cc_mod.htcp_ca.lasttime >= net->cc_mod.htcp_ca.minRTT) && in measure_achieved_throughput()
1927 (net->cc_mod.htcp_ca.minRTT > 0)) { in measure_achieved_throughput()
1946 htcp_beta_update(struct htcp *ca, uint32_t minRTT, uint32_t maxRTT) in htcp_beta_update() argument
1961 if (ca->modeswitch && minRTT > sctp_msecs_to_ticks(10) && maxRTT) { in htcp_beta_update()
1962 ca->beta = (minRTT << 7) / maxRTT; in htcp_beta_update()
[all …]
H A Dsctp_structs.h223 uint32_t minRTT; member