Home
last modified time | relevance | path

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

/external/rust/crates/quiche/src/
Dpath.rs200 recovery_config: &recovery::RecoveryConfig, is_initial: bool, in new()
215 recovery: recovery::Recovery::new_with_config(recovery_config), in new()
924 let recovery_config = RecoveryConfig::from_config(&config); in path_validation_limited_mtu() localVariable
926 let path = Path::new(client_addr, server_addr, &recovery_config, true); in path_validation_limited_mtu()
930 Path::new(client_addr_2, server_addr, &recovery_config, false); in path_validation_limited_mtu()
998 let recovery_config = RecoveryConfig::from_config(&config); in multiple_probes() localVariable
1000 let path = Path::new(client_addr, server_addr, &recovery_config, true); in multiple_probes()
1003 Path::new(server_addr, client_addr, &recovery_config, false); in multiple_probes()
Dlib.rs1237 recovery_config: recovery::RecoveryConfig, field
1684 let recovery_config = recovery::RecoveryConfig::from_config(config); in with_tls() localVariable
1686 let mut path = path::Path::new(local, peer, &recovery_config, true); in with_tls()
1729 recovery_config, in with_tls()
6348 self.recovery_config.max_ack_delay = max_ack_delay; in process_peer_transport_params()
7245 path::Path::new(info.to, info.from, &self.recovery_config, false); in get_or_create_recv_path_id()
7325 path::Path::new(local_addr, peer_addr, &self.recovery_config, false); in create_path_on_client()
/external/rust/crates/quiche/src/recovery/
Dmod.rs194 pub fn new_with_config(recovery_config: &RecoveryConfig) -> Self { in new_with_config()
196 recovery_config.max_send_udp_payload_size * INITIAL_WINDOW_PACKETS; in new_with_config()
223 max_ack_delay: recovery_config.max_ack_delay, in new_with_config()
260 max_datagram_size: recovery_config.max_send_udp_payload_size, in new_with_config()
262 cc_ops: recovery_config.cc_ops, in new_with_config()
270 hystart: hystart::Hystart::new(recovery_config.hystart), in new_with_config()
273 recovery_config.pacing, in new_with_config()
276 recovery_config.max_send_udp_payload_size, in new_with_config()