From 7fda8c0a1433badb5cd20584c659c63a18c4c537 Mon Sep 17 00:00:00 2001 From: Igor Katson Date: Wed, 28 Aug 2024 18:07:53 +0100 Subject: [PATCH] Add doc for --disable-upload --- crates/rqbit/src/main.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/crates/rqbit/src/main.rs b/crates/rqbit/src/main.rs index c24754e..4e37de2 100644 --- a/crates/rqbit/src/main.rs +++ b/crates/rqbit/src/main.rs @@ -203,6 +203,11 @@ struct Opts { #[arg(long, env = "RQBIT_UMASK", value_parser=parse_umask)] umask: Option, + /// Disable uploading entirely. If this is set, rqbit won't share piece availability + /// and will disconnect on download request. + /// + /// Might be useful e.g. if rqbit upload consumes all your upload bandwidth and interferes + /// with your other Internet usage. #[arg(long, env = "RQBIT_DISABLE_UPLOAD")] disable_upload: bool, }