Home
last modified time | relevance | path

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

/trueos/sys/netinet/
HDsctp_cc_functions.c1882 ca->undo_maxRTT = ca->maxRTT; in htcp_reset()
1893 net->cc_mod.htcp_ca.maxRTT = net->cc_mod.htcp_ca.undo_maxRTT; in htcp_cwnd_undo()
1911 if (net->cc_mod.htcp_ca.maxRTT < net->cc_mod.htcp_ca.minRTT) in measure_rtt()
1912 net->cc_mod.htcp_ca.maxRTT = net->cc_mod.htcp_ca.minRTT; in measure_rtt()
1913 if (net->cc_mod.htcp_ca.maxRTT < srtt && srtt <= net->cc_mod.htcp_ca.maxRTT + MSEC_TO_TICKS(20)) in measure_rtt()
1914 net->cc_mod.htcp_ca.maxRTT = srtt; in measure_rtt()
1958 htcp_beta_update(struct htcp *ca, uint32_t minRTT, uint32_t maxRTT) in htcp_beta_update() argument
1972 if (ca->modeswitch && minRTT > (uint32_t) MSEC_TO_TICKS(10) && maxRTT) { in htcp_beta_update()
1973 ca->beta = (minRTT << 7) / maxRTT; in htcp_beta_update()
2021 uint32_t maxRTT = net->cc_mod.htcp_ca.maxRTT; in htcp_param_update() local
[all …]
HDsctp_structs.h208 uint32_t maxRTT; member