Lines Matching refs:maxRTT
1875 ca->undo_maxRTT = ca->maxRTT; in htcp_reset()
1886 net->cc_mod.htcp_ca.maxRTT = net->cc_mod.htcp_ca.undo_maxRTT; in htcp_cwnd_undo()
1904 if (net->cc_mod.htcp_ca.maxRTT < net->cc_mod.htcp_ca.minRTT) in measure_rtt()
1905 net->cc_mod.htcp_ca.maxRTT = net->cc_mod.htcp_ca.minRTT; in measure_rtt()
1906 …if (net->cc_mod.htcp_ca.maxRTT < srtt && srtt <= net->cc_mod.htcp_ca.maxRTT + sctp_msecs_to_ticks(… in measure_rtt()
1907 net->cc_mod.htcp_ca.maxRTT = srtt; in measure_rtt()
1952 htcp_beta_update(struct htcp *ca, uint32_t minRTT, uint32_t maxRTT) in htcp_beta_update() argument
1967 if (ca->modeswitch && minRTT > sctp_msecs_to_ticks(10) && maxRTT) { in htcp_beta_update()
1968 ca->beta = (minRTT << 7) / maxRTT; in htcp_beta_update()
2018 uint32_t maxRTT = net->cc_mod.htcp_ca.maxRTT; in htcp_param_update() local
2020 htcp_beta_update(&net->cc_mod.htcp_ca, minRTT, maxRTT); in htcp_param_update()
2027 if (minRTT > 0 && maxRTT > minRTT) in htcp_param_update()
2028 net->cc_mod.htcp_ca.maxRTT = minRTT + ((maxRTT - minRTT) * 95) / 100; in htcp_param_update()