changing congestion control algorithm and pacing
This commit is contained in:
parent
1db88d168d
commit
26be1bc5be
|
@ -27,9 +27,8 @@ pub fn configure_client(
|
|||
config.set_initial_max_streams_bidi(maximum_concurrent_streams);
|
||||
config.set_initial_max_streams_uni(maximum_concurrent_streams);
|
||||
config.set_disable_active_migration(true);
|
||||
config.set_cc_algorithm(quiche::CongestionControlAlgorithm::CUBIC);
|
||||
config.set_cc_algorithm(quiche::CongestionControlAlgorithm::BBR2);
|
||||
config.set_max_ack_delay(maximum_ack_delay);
|
||||
config.set_ack_delay_exponent(ack_exponent);
|
||||
config.enable_pacing(false);
|
||||
Ok(config)
|
||||
}
|
||||
|
|
|
@ -43,9 +43,10 @@ pub fn configure_server(quic_parameter: QuicParameters) -> anyhow::Result<quiche
|
|||
config.set_disable_active_migration(true);
|
||||
config.set_max_connection_window(128 * 1024 * 1024); // 128 Mbs
|
||||
config.enable_early_data();
|
||||
config.set_cc_algorithm(quiche::CongestionControlAlgorithm::CUBIC);
|
||||
config.set_cc_algorithm(quiche::CongestionControlAlgorithm::BBR2);
|
||||
config.set_active_connection_id_limit(max_number_of_connections);
|
||||
config.set_max_ack_delay(maximum_ack_delay);
|
||||
config.set_ack_delay_exponent(ack_exponent);
|
||||
config.enable_pacing(false);
|
||||
Ok(config)
|
||||
}
|
||||
|
|
|
@ -194,7 +194,7 @@ pub fn create_quiche_client_thread(
|
|||
}
|
||||
}
|
||||
Ok(None) => {
|
||||
// do nothing / continue reading other streams
|
||||
// do nothing / continue
|
||||
}
|
||||
Err(e) => {
|
||||
log::error!("Error recieving message : {e}");
|
||||
|
|
Loading…
Reference in New Issue