Skip to content

Commit

Permalink
Update default pto linear factor for tquic tools (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaofei0800 authored Feb 1, 2024
1 parent db04307 commit 0f2b341
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/src/bin/tquic_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ pub struct ClientOpt {
pub initial_rtt: u64,

/// Linear factor for calculating the probe timeout.
#[clap(long, default_value = "3", value_name = "NUM")]
#[clap(long, default_value = "10", value_name = "NUM")]
pub pto_linear_factor: u64,

/// Upper limit of probe timeout in microseconds.
Expand Down
2 changes: 1 addition & 1 deletion tools/src/bin/tquic_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ pub struct ServerOpt {
pub initial_rtt: u64,

/// Linear factor for calculating the probe timeout.
#[clap(long, default_value = "3", value_name = "NUM")]
#[clap(long, default_value = "10", value_name = "NUM")]
pub pto_linear_factor: u64,

/// Upper limit of probe timeout in microseconds.
Expand Down

0 comments on commit 0f2b341

Please sign in to comment.