Searched refs:cubic_state (Results 1 – 2 of 2) sorted by relevance
112 let cubic = &mut r.cubic_state; in collapse_cwnd()131 let cubic = &mut r.cubic_state; in on_packet_sent()191 if r.cubic_state.w_max == 0.0 { in on_packet_acked()192 r.cubic_state.w_max = r.congestion_window as f64; in on_packet_acked()193 r.cubic_state.k = 0.0; in on_packet_acked()204 r.cubic_state.w_max = r.congestion_window as f64; in on_packet_acked()205 r.cubic_state.k = 0.0; in on_packet_acked()213 let w_cubic = r.cubic_state.w_cubic(t + r.min_rtt); in on_packet_acked()216 let w_est = r.cubic_state.w_est(t, r.min_rtt); in on_packet_acked()243 r.cubic_state.cwnd_inc += cubic_cwnd - r.congestion_window; in on_packet_acked()[all …]
125 cubic_state: cubic::State, field188 cubic_state: cubic::State::default(), in new()