Home
last modified time | relevance | path

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

/external/rust/crates/quiche/src/recovery/
Dmod.rs74 pto_count: u32, field
136 pto_count: 0, in new()
344 self.pto_count = 0; in on_ack_received()
388 self.pto_count += 1; in on_loss_detection_timeout()
391 cmp::min(self.pto_count as usize, MAX_PTO_PROBES_COUNT); in on_loss_detection_timeout()
531 let mut duration = self.pto() * 2_u32.pow(self.pto_count); in pto_time_and_space()
558 duration += self.max_ack_delay * 2_u32.pow(self.pto_count); in pto_time_and_space()
1146 assert_eq!(r.pto_count, 1); in loss_on_pto()