mirror of https://github.com/aria2/aria2
2008-11-16 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Added -u for the short form of --max-upload-limit option. * doc/aria2c.1.txt * src/option_processing.cc * src/usage_text.hpull/1/head
parent
3c15414420
commit
03f91ba35a
|
@ -1,3 +1,10 @@
|
|||
2008-11-16 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||
|
||||
Added -u for the short form of --max-upload-limit option.
|
||||
* doc/aria2c.1.txt
|
||||
* src/option_processing.cc
|
||||
* src/usage_text.h
|
||||
|
||||
2008-11-16 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||
|
||||
Added -V for the short form of --check-integrity option.
|
||||
|
|
|
@ -505,7 +505,7 @@ Set TCP port number for BitTorrent downloads\&. Multiple ports can be specified
|
|||
Note
|
||||
Make sure that the specified ports are open for incoming TCP traffic\&.
|
||||
.PP
|
||||
\fB\-\-max\-upload\-limit\fR=SPEED
|
||||
\fB\-u\fR, \fB\-\-max\-upload\-limit\fR=SPEED
|
||||
.RS 4
|
||||
Set max upload speed in bytes per sec\&.
|
||||
\fI0\fR
|
||||
|
|
|
@ -1063,7 +1063,7 @@ writes the piece to the appropriate files.</td>
|
|||
</div>
|
||||
<div class="vlist"><dl>
|
||||
<dt>
|
||||
<strong>--max-upload-limit</strong>=SPEED
|
||||
<strong>-u</strong>, <strong>--max-upload-limit</strong>=SPEED
|
||||
</dt>
|
||||
<dd>
|
||||
<p>
|
||||
|
@ -2021,7 +2021,7 @@ files in the program, then also delete it here.</p></div>
|
|||
</div>
|
||||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated 2008-11-16 13:49:20 JST
|
||||
Last updated 2008-11-16 17:09:18 JST
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -365,7 +365,7 @@ BitTorrent Specific Options
|
|||
[NOTE]
|
||||
Make sure that the specified ports are open for incoming TCP traffic.
|
||||
|
||||
*--max-upload-limit*=SPEED::
|
||||
*-u*, *--max-upload-limit*=SPEED::
|
||||
Set max upload speed in bytes per sec. '0' means unrestricted.
|
||||
You can append 'K' or 'M'(1K = 1024, 1M = 1024K).
|
||||
Default: '0'
|
||||
|
|
|
@ -200,7 +200,7 @@ Option* option_processing(int argc, char* const argv[])
|
|||
//{ "upload-limit".c_str(), required_argument, &lopt, 20 },
|
||||
{ PREF_SEED_TIME.c_str(), required_argument, &lopt, 22 },
|
||||
{ PREF_SEED_RATIO.c_str(), required_argument, &lopt, 23 },
|
||||
{ PREF_MAX_UPLOAD_LIMIT.c_str(), required_argument, &lopt, 24 },
|
||||
{ PREF_MAX_UPLOAD_LIMIT.c_str(), required_argument, 0, 'u' },
|
||||
{ PREF_PEER_ID_PREFIX.c_str(), required_argument, &lopt, 25 },
|
||||
{ PREF_ENABLE_PEER_EXCHANGE.c_str(), optional_argument, &lopt, 26 },
|
||||
{ PREF_ENABLE_DHT.c_str(), optional_argument, &lopt, 27 },
|
||||
|
@ -229,7 +229,7 @@ Option* option_processing(int argc, char* const argv[])
|
|||
{ 0, 0, 0, 0 }
|
||||
};
|
||||
c = getopt_long(argc, argv,
|
||||
"Dd:o:l:s:pt:m:vh::ST:M:C:a:cU:ni:j:Z::P::q::R::V::",
|
||||
"Dd:o:l:s:pt:m:vh::ST:M:C:a:cU:ni:j:Z::P::q::R::V::u:",
|
||||
longOpts, &optIndex);
|
||||
if(c == -1) {
|
||||
break;
|
||||
|
@ -302,9 +302,6 @@ Option* option_processing(int argc, char* const argv[])
|
|||
case 23:
|
||||
cmdstream << PREF_SEED_RATIO << "=" << optarg << "\n";
|
||||
break;
|
||||
case 24:
|
||||
cmdstream << PREF_MAX_UPLOAD_LIMIT << "=" << optarg << "\n";
|
||||
break;
|
||||
case 25:
|
||||
cmdstream << PREF_PEER_ID_PREFIX << "=" << optarg << "\n";
|
||||
break;
|
||||
|
@ -541,6 +538,9 @@ Option* option_processing(int argc, char* const argv[])
|
|||
case 'V':
|
||||
cmdstream << PREF_CHECK_INTEGRITY << "=" << toBoolArg(optarg) << "\n";
|
||||
break;
|
||||
case 'u':
|
||||
cmdstream << PREF_MAX_UPLOAD_LIMIT << "=" << optarg << "\n";
|
||||
break;
|
||||
case 'v':
|
||||
showVersion();
|
||||
exit(EXIT_SUCCESS);
|
||||
|
|
|
@ -227,7 +227,7 @@ _(" --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n
|
|||
" to specify a range: \"6881-6999\". ',' and '-' can\n"\
|
||||
" be used together.")
|
||||
#define TEXT_MAX_UPLOAD_LIMIT \
|
||||
_(" --max-upload-limit=SPEED Set max upload speed in bytes per sec.\n"\
|
||||
_(" -u, --max-upload-limit=SPEED Set max upload speed in bytes per sec.\n"\
|
||||
" 0 means unrestricted.\n"\
|
||||
" You can append K or M(1K = 1024, 1M = 1024K).")
|
||||
#define TEXT_SEED_TIME \
|
||||
|
|
Loading…
Reference in New Issue