mirror of
https://github.com/transmission/transmission
synced 2024-12-23 08:13:27 +00:00
(daemon) in the help and man page, add the word "global" to the global speed limit options, to clarify that they're not per-torrent
This commit is contained in:
parent
0f6cef7b0e
commit
763ce2d9a3
2 changed files with 8 additions and 8 deletions
|
@ -56,9 +56,9 @@ static tr_option opts[] =
|
|||
"a", 0, NULL },
|
||||
{ 'b', "debug", "Print debugging information",
|
||||
"b", 0, NULL },
|
||||
{ 'd', "downlimit", "Set the maximum download speed in KB/s",
|
||||
{ 'd', "downlimit", "Set the maximum global download speed in KB/s",
|
||||
"d", 1, "<speed>" },
|
||||
{ 'D', "no-downlimit", "Don't limit the download speed",
|
||||
{ 'D', "no-downlimit", "Don't limit the global download speed",
|
||||
"D", 0, NULL },
|
||||
{ 910, "encryption-required", "Encrypt all peer connections",
|
||||
"er", 0, NULL },
|
||||
|
@ -99,9 +99,9 @@ static tr_option opts[] =
|
|||
"S", 0, NULL },
|
||||
{ 't', "torrent", "Set the current torrent(s)",
|
||||
"t", 1, "<torrent>" },
|
||||
{ 'u', "uplimit", "Set the maximum upload speed in KB/s",
|
||||
{ 'u', "uplimit", "Set the maximum global upload speed in KB/s",
|
||||
"u", 1, "<speed>" },
|
||||
{ 'U', "no-uplimit", "Don't limit the upload speed",
|
||||
{ 'U', "no-uplimit", "Don't limit the global upload speed",
|
||||
"U", 0, NULL },
|
||||
{ 'v', "verify", "Verify the current torrent(s)",
|
||||
"v", 0, NULL },
|
||||
|
|
|
@ -59,12 +59,12 @@ into transmission.
|
|||
Enable debugging mode.
|
||||
|
||||
.It Fl d Fl -downlimit Ar limit
|
||||
Limit the download speed to
|
||||
Limit the global download speed to
|
||||
.Ar limit
|
||||
kilobytes per second.
|
||||
|
||||
.It Fl D Fl -no-downlimit
|
||||
Remove the download limit.
|
||||
Remove the global download limit.
|
||||
|
||||
.It Fl er Fl -encryption-required
|
||||
Encrypt all peer connections.
|
||||
|
@ -151,11 +151,11 @@ To set more than one current torrent, join their ids or hashes together in a lis
|
|||
such as "-t2,4,6-8" to operate on the torrents whose IDs are 2, 4, 6, 7, and 8.
|
||||
|
||||
.It Fl u Fl -uplimit Ar limit
|
||||
Limit the upload speed to
|
||||
Limit the global upload speed to
|
||||
.Ar limit
|
||||
kilobytes per second.
|
||||
.It Fl U Fl -no-uplimit
|
||||
Remove the upload limit.
|
||||
Remove the global upload limit.
|
||||
|
||||
.It Fl v Fl -verify
|
||||
Verify the current torrent(s)
|
||||
|
|
Loading…
Reference in a new issue