Lines Matching refs:handshake_status
198 handshake_status: HandshakeStatus, now: Instant, trace_id: &str, in on_packet_sent()
224 self.set_loss_detection_timer(handshake_status, now); in on_packet_sent()
244 epoch: packet::Epoch, handshake_status: HandshakeStatus, now: Instant, in on_ack_received()
346 self.set_loss_detection_timer(handshake_status, now); in on_ack_received()
356 &mut self, handshake_status: HandshakeStatus, now: Instant, in on_loss_detection_timeout()
365 self.set_loss_detection_timer(handshake_status, now); in on_loss_detection_timeout()
374 let (_, e) = self.pto_time_and_space(handshake_status, now); in on_loss_detection_timeout()
381 if handshake_status.has_handshake_keys { in on_loss_detection_timeout()
413 self.set_loss_detection_timer(handshake_status, now); in on_loss_detection_timeout()
419 &mut self, epoch: packet::Epoch, handshake_status: HandshakeStatus, in on_pkt_num_space_discarded()
440 self.set_loss_detection_timer(handshake_status, now); in on_pkt_num_space_discarded()
529 &self, handshake_status: HandshakeStatus, now: Instant, in pto_time_and_space()
535 if handshake_status.has_handshake_keys { in pto_time_and_space()
553 if !handshake_status.completed { in pto_time_and_space()
574 &mut self, handshake_status: HandshakeStatus, now: Instant, in set_loss_detection_timer()
584 if self.bytes_in_flight == 0 && handshake_status.peer_verified_address { in set_loss_detection_timer()
590 let (timeout, _) = self.pto_time_and_space(handshake_status, now); in set_loss_detection_timer()