mirror of https://github.com/aria2/aria2
2009-11-29 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Documented --bt-prioritize-piece option in man page. * doc/aria2c.1.txtpull/1/head
parent
e208302947
commit
2c92b2fab8
|
@ -1,3 +1,8 @@
|
||||||
|
2009-11-29 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||||
|
|
||||||
|
Documented --bt-prioritize-piece option in man page.
|
||||||
|
* doc/aria2c.1.txt
|
||||||
|
|
||||||
2009-11-29 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
2009-11-29 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||||
|
|
||||||
Added option --bt-prioritize-piece. This option instruct aria2 to
|
Added option --bt-prioritize-piece. This option instruct aria2 to
|
||||||
|
|
17
doc/aria2c.1
17
doc/aria2c.1
|
@ -2,12 +2,12 @@
|
||||||
.\" Title: aria2c
|
.\" Title: aria2c
|
||||||
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
|
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
|
||||||
.\" Date: 11/28/2009
|
.\" Date: 11/29/2009
|
||||||
.\" Manual: Aria2 Manual
|
.\" Manual: Aria2 Manual
|
||||||
.\" Source: Aria2
|
.\" Source: Aria2
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "ARIA2C" "1" "11/28/2009" "Aria2" "Aria2 Manual"
|
.TH "ARIA2C" "1" "11/29/2009" "Aria2" "Aria2 Manual"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * set default formatting
|
.\" * set default formatting
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
@ -512,6 +512,19 @@ Set minimum level of encryption method\&. If several encryption methods are prov
|
||||||
\fIplain\fR
|
\fIplain\fR
|
||||||
.RE
|
.RE
|
||||||
.PP
|
.PP
|
||||||
|
\fB\-\-bt\-prioritize\-piece\fR=\fIhead\fR[=SIZE],\fItail\fR[=SIZE]
|
||||||
|
.RS 4
|
||||||
|
Try to download first and last pieces of each file first\&. The argument can contain 2 keywords:
|
||||||
|
\fIhead\fR
|
||||||
|
and
|
||||||
|
\fItail\fR\&. To include both keywords, they must be separated by comma\&. These keywords can take one parameter, SIZE\&. For example , if
|
||||||
|
\fIhead\fR=SIZE is specified, pieces in the range of first SIZE bytes of each file get higher priority\&.
|
||||||
|
\fItail\fR=SIZE means the range of last SIZE bytes of each file\&. SIZE can include
|
||||||
|
\fIK\fR
|
||||||
|
or
|
||||||
|
\fIM\fR(1K = 1024, 1M = 1024K)\&.
|
||||||
|
.RE
|
||||||
|
.PP
|
||||||
\fB\-\-bt\-require\-crypto\fR=\fItrue\fR|\fIfalse\fR
|
\fB\-\-bt\-require\-crypto\fR=\fItrue\fR|\fIfalse\fR
|
||||||
.RS 4
|
.RS 4
|
||||||
If true is given, aria2 doesn\(cqt accept and establish connection with legacy BitTorrent handshake(\e19BitTorrent protocol)\&. Thus aria2 always uses Obfuscation handshake\&. Default:
|
If true is given, aria2 doesn\(cqt accept and establish connection with legacy BitTorrent handshake(\e19BitTorrent protocol)\&. Thus aria2 always uses Obfuscation handshake\&. Default:
|
||||||
|
|
|
@ -1222,6 +1222,20 @@ writes the piece to the appropriate files.</td>
|
||||||
</p>
|
</p>
|
||||||
</dd>
|
</dd>
|
||||||
<dt class="hdlist1">
|
<dt class="hdlist1">
|
||||||
|
<strong>--bt-prioritize-piece</strong>=<em>head</em>[=SIZE],<em>tail</em>[=SIZE]
|
||||||
|
</dt>
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Try to download first and last pieces of each file first. The
|
||||||
|
argument can contain 2 keywords: <em>head</em> and <em>tail</em>. To include both
|
||||||
|
keywords, they must be separated by comma. These keywords can take
|
||||||
|
one parameter, SIZE. For example , if <em>head</em>=SIZE is specified,
|
||||||
|
pieces in the range of first SIZE bytes of each file get higher
|
||||||
|
priority. <em>tail</em>=SIZE means the range of last SIZE bytes of each
|
||||||
|
file. SIZE can include <em>K</em> or <em>M</em>(1K = 1024, 1M = 1024K).
|
||||||
|
</p>
|
||||||
|
</dd>
|
||||||
|
<dt class="hdlist1">
|
||||||
<strong>--bt-require-crypto</strong>=<em>true</em>|<em>false</em>
|
<strong>--bt-require-crypto</strong>=<em>true</em>|<em>false</em>
|
||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
|
@ -3417,7 +3431,7 @@ files in the program, then also delete it here.</p></div>
|
||||||
<div id="footnotes"><hr /></div>
|
<div id="footnotes"><hr /></div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated 2009-11-28 21:20:26 JST
|
Last updated 2009-11-29 15:46:53 JST
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -360,6 +360,16 @@ BitTorrent Specific Options
|
||||||
one which satisfies the given level.
|
one which satisfies the given level.
|
||||||
Default: 'plain'
|
Default: 'plain'
|
||||||
|
|
||||||
|
*--bt-prioritize-piece*='head'[=SIZE],'tail'[=SIZE]::
|
||||||
|
|
||||||
|
Try to download first and last pieces of each file first. The
|
||||||
|
argument can contain 2 keywords: 'head' and 'tail'. To include both
|
||||||
|
keywords, they must be separated by comma. These keywords can take
|
||||||
|
one parameter, SIZE. For example , if 'head'=SIZE is specified,
|
||||||
|
pieces in the range of first SIZE bytes of each file get higher
|
||||||
|
priority. 'tail'=SIZE means the range of last SIZE bytes of each
|
||||||
|
file. SIZE can include 'K' or 'M'(1K = 1024, 1M = 1024K).
|
||||||
|
|
||||||
*--bt-require-crypto*='true'|'false'::
|
*--bt-require-crypto*='true'|'false'::
|
||||||
If true is given, aria2 doesn't accept and establish connection with legacy
|
If true is given, aria2 doesn't accept and establish connection with legacy
|
||||||
BitTorrent handshake(\19BitTorrent protocol).
|
BitTorrent handshake(\19BitTorrent protocol).
|
||||||
|
|
Loading…
Reference in New Issue