Home
last modified time | relevance | path

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

/external/usrsctp/usrsctplib/netinet/
Dsctp_cc_functions.c1965 return (ca->minRTT == 0 ? htcp_cong_time(ca) : htcp_cong_time(ca)/ca->minRTT); in htcp_ccount()
1996 if (net->cc_mod.htcp_ca.minRTT > srtt || !net->cc_mod.htcp_ca.minRTT) in measure_rtt()
1997 net->cc_mod.htcp_ca.minRTT = srtt; in measure_rtt()
2001 if (net->cc_mod.htcp_ca.maxRTT < net->cc_mod.htcp_ca.minRTT) in measure_rtt()
2002 net->cc_mod.htcp_ca.maxRTT = net->cc_mod.htcp_ca.minRTT; in measure_rtt()
2029 (now - net->cc_mod.htcp_ca.lasttime >= net->cc_mod.htcp_ca.minRTT) && in measure_achieved_throughput()
2030 (net->cc_mod.htcp_ca.minRTT > 0)) { in measure_achieved_throughput()
2049 htcp_beta_update(struct htcp *ca, uint32_t minRTT, uint32_t maxRTT) in htcp_beta_update() argument
2063 if (ca->modeswitch && minRTT > sctp_msecs_to_ticks(10) && maxRTT) { in htcp_beta_update()
2064 ca->beta = (minRTT<<7)/maxRTT; in htcp_beta_update()
[all …]
Dsctp_structs.h265 uint32_t minRTT; member