Home
last modified time | relevance | path

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

/webrtc/dtls/src/
H A Dhandshaker.rs205 self.current_flight.to_string(), in handshake()
229 self.retransmit = self.current_flight.has_retransmit(); in prepare()
232 .current_flight in prepare()
300 if self.current_flight.is_last_send_flight() { in send()
319 …let result = self.current_flight.parse(&mut self.handle_queue_tx, &mut self.state, &self.cache, &s… in wait()
325 self.current_flight.to_string(), in wait()
344 …if next_flight.is_last_recv_flight() && self.current_flight.to_string() == next_flight.to_string()… in wait()
347 self.current_flight = next_flight; in wait()
354 …hake:{}] {} retransmit_timer", srv_cli_str(self.state.is_client), self.current_flight.to_string()); in wait()
374 …] {} handshake_tx is dropped", srv_cli_str(self.state.is_client), self.current_flight.to_string()); in finish()
[all …]
/webrtc/dtls/src/conn/
H A Dmod.rs93 pub(crate) current_flight: Box<dyn Flight + Send + Sync>, field
280 current_flight: flight, in new()
H A Dconn_test.rs427 current_flight: Box::new(Flight0 {}) as Box<dyn Flight + Send + Sync>, in test_export_keying_material()