feat: add speed-concurrency option to auto pipeline

This commit is contained in:
chuan
2026-06-23 21:41:41 +08:00
parent 5c112a92af
commit 93cffaf3ae
2 changed files with 5 additions and 2 deletions
+4
View File
@@ -54,6 +54,10 @@ pub(crate) struct AutoArgs {
#[arg(long, default_value_t = 10)]
pub(crate) speed_top: usize,
/// Stage 3: concurrent downloads during the speed test (1 = most accurate).
#[arg(long, default_value_t = 1)]
pub(crate) speed_concurrency: usize,
/// Also test IPv6 ranges (off by default).
#[arg(short = '6', long = "ipv6")]
pub(crate) ipv6: bool,