2008-01-05 11:26:56 +00:00
|
|
|
/* <!-- copyright */
|
|
|
|
/*
|
|
|
|
* aria2 - The high speed download utility
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
* In addition, as a special exception, the copyright holders give
|
|
|
|
* permission to link the code of portions of this program with the
|
|
|
|
* OpenSSL library under certain conditions as described in each
|
|
|
|
* individual source file, and distribute linked combinations
|
|
|
|
* including the two.
|
|
|
|
* You must obey the GNU General Public License in all respects
|
|
|
|
* for all of the code used other than OpenSSL. If you modify
|
|
|
|
* file(s) with this exception, you may extend this exception to your
|
|
|
|
* version of the file(s), but you are not obligated to do so. If you
|
|
|
|
* do not wish to do so, delete this exception statement from your
|
|
|
|
* version. If you delete this exception statement from all source
|
|
|
|
* files in the program, then also delete it here.
|
|
|
|
*/
|
|
|
|
/* copyright --> */
|
|
|
|
|
|
|
|
#define TEXT_DIR \
|
|
|
|
_(" -d, --dir=DIR The directory to store the downloaded file.")
|
|
|
|
#define TEXT_OUT \
|
|
|
|
_(" -o, --out=FILE The file name of the downloaded file.")
|
|
|
|
#define TEXT_LOG \
|
|
|
|
_(" -l, --log=LOG The file name of the log file. If '-' is\n"\
|
|
|
|
" specified, log is written to stdout.")
|
|
|
|
#define TEXT_DAEMON \
|
|
|
|
_(" -D, --daemon Run as daemon.")
|
|
|
|
#define TEXT_SPLIT \
|
2008-06-09 13:10:24 +00:00
|
|
|
_(" -s, --split=N Download a file using N connections. If more\n"\
|
|
|
|
" than N URLs are given, first N URLs are used and\n"\
|
|
|
|
" remaining URLs are used for backup. If less than\n"\
|
2008-06-25 15:07:30 +00:00
|
|
|
" N URLs are given, those URLs are used more than\n"\
|
|
|
|
" once so that N connections total are made\n"\
|
2008-06-30 12:42:40 +00:00
|
|
|
" simultaneously. Please see -j option too.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_RETRY_WAIT \
|
|
|
|
_(" --retry-wait=SEC Set the seconds to wait to retry after an error\n"\
|
2008-09-22 09:26:57 +00:00
|
|
|
" has occured.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_TIMEOUT \
|
2008-09-22 09:26:57 +00:00
|
|
|
_(" -t, --timeout=SEC Set timeout in seconds.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_MAX_TRIES \
|
2008-09-22 09:26:57 +00:00
|
|
|
_(" -m, --max-tries=N Set number of tries. 0 means unlimited.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_HTTP_PROXY \
|
2008-11-04 14:08:26 +00:00
|
|
|
_(" --http-proxy=PROXY Use this proxy server for HTTP.\n"\
|
|
|
|
" See also --all-proxy option.\n"\
|
|
|
|
" This affects all URLs.")
|
|
|
|
#define TEXT_HTTPS_PROXY \
|
|
|
|
_(" --https-proxy=PROXY Use this proxy server for HTTPS.\n"\
|
|
|
|
" See also --all-proxy option.\n"\
|
|
|
|
" This affects all URLs.")
|
|
|
|
#define TEXT_FTP_PROXY \
|
|
|
|
_(" --ftp-proxy=PROXY Use this proxy server for FTP.\n"\
|
|
|
|
" See also --all-proxy option.\n"\
|
|
|
|
" This affects all URLs.")
|
|
|
|
#define TEXT_ALL_PROXY \
|
|
|
|
_(" --all-proxy=PROXY Use this proxy server in the all protocols.\n"\
|
|
|
|
" You can override this setting and specify a\n"\
|
|
|
|
" proxy server for particular proctol using\n"\
|
|
|
|
" --http-proxy, --https-proxy and --ftp-proxy\n"\
|
|
|
|
" options.\n"\
|
|
|
|
" This affects all URLs.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_HTTP_USER \
|
|
|
|
_(" --http-user=USER Set HTTP user. This affects all URLs.")
|
|
|
|
#define TEXT_HTTP_PASSWD \
|
|
|
|
_(" --http-passwd=PASSWD Set HTTP password. This affects all URLs.")
|
|
|
|
#define TEXT_HTTP_PROXY_METHOD \
|
2008-09-22 09:26:57 +00:00
|
|
|
_(" --http-proxy-method=METHOD Set the method to use in proxy request.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_HTTP_AUTH_SCHEME \
|
|
|
|
_(" --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, basic\n"\
|
2008-09-22 09:26:57 +00:00
|
|
|
" is the only supported scheme.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_REFERER \
|
|
|
|
_(" --referer=REFERER Set Referer. This affects all URLs.")
|
|
|
|
#define TEXT_FTP_USER \
|
2008-09-22 09:26:57 +00:00
|
|
|
_(" --ftp-user=USER Set FTP user. This affects all URLs.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_FTP_PASSWD \
|
2008-09-22 09:26:57 +00:00
|
|
|
_(" --ftp-passwd=PASSWD Set FTP password. This affects all URLs.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_FTP_TYPE \
|
2008-09-22 09:26:57 +00:00
|
|
|
_(" --ftp-type=TYPE Set FTP transfer type.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_FTP_PASV \
|
|
|
|
_(" -p, --ftp-pasv Use passive mode in FTP.")
|
|
|
|
#define TEXT_LOWEST_SPEED_LIMIT \
|
|
|
|
_(" --lowest-speed-limit=SPEED Close connection if download speed is lower than\n"\
|
|
|
|
" or equal to this value(bytes per sec).\n"\
|
|
|
|
" 0 means aria2 does not have a lowest speed limit.\n"\
|
|
|
|
" You can append K or M(1K = 1024, 1M = 1024K).\n"\
|
2008-09-22 09:26:57 +00:00
|
|
|
" This option does not affect BitTorrent downloads.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_MAX_DOWNLOAD_LIMIT \
|
|
|
|
_(" --max-download-limit=SPEED Set max download speed in bytes per sec.\n"\
|
|
|
|
" 0 means unrestricted.\n"\
|
2008-09-22 09:26:57 +00:00
|
|
|
" You can append K or M(1K = 1024, 1M = 1024K).")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_FILE_ALLOCATION \
|
2008-09-22 09:26:57 +00:00
|
|
|
_(" --file-allocation=METHOD Specify file allocation method.\n"\
|
|
|
|
" 'none' doesn't pre-allocate file space. 'prealloc'\n"\
|
|
|
|
" pre-allocates file space before download begins.\n"\
|
|
|
|
" This may take some time depending on the size of\n"\
|
|
|
|
" the file.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_NO_FILE_ALLOCATION_LIMIT \
|
|
|
|
_(" --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"\
|
|
|
|
" size is smaller than SIZE.\n"\
|
|
|
|
" You can append K or M(1K = 1024, 1M = 1024K).")
|
|
|
|
# define TEXT_ENABLE_DIRECT_IO \
|
|
|
|
_(" --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage while\n"\
|
|
|
|
" allocating files.\n"\
|
|
|
|
" Turn off if you encounter any error")
|
|
|
|
#define TEXT_ALLOW_OVERWRITE \
|
|
|
|
_(" --allow-overwrite=true|false If false, aria2 doesn't download a file which\n"\
|
|
|
|
" already exists but the corresponding .aria2 file\n"\
|
2008-09-22 09:26:57 +00:00
|
|
|
" doesn't exist.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_ALLOW_PIECE_LENGTH_CHANGE \
|
|
|
|
_(" --allow-piece-length-change=true|false If false is given, aria2 aborts download\n"\
|
|
|
|
" when a piece length is different from one in\n"\
|
|
|
|
" a control file. If true is given, you can proceed\n"\
|
|
|
|
" but some download progress will be lost.")
|
|
|
|
#define TEXT_FORCE_SEQUENTIAL \
|
|
|
|
_(" -Z, --force-sequential[=true|false] Fetch URIs in the command-line sequentially\n"\
|
|
|
|
" and download each URI in a separate session, like\n"\
|
2008-09-22 09:26:57 +00:00
|
|
|
" the usual command-line download utilities.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_AUTO_FILE_RENAMING \
|
|
|
|
_(" --auto-file-renaming[=true|false] Rename file name if the same file already\n"\
|
|
|
|
" exists. This option works only in http(s)/ftp\n"\
|
|
|
|
" download.\n"\
|
|
|
|
" The new file name has a dot and a number(1..9999)\n"\
|
2008-09-22 09:26:57 +00:00
|
|
|
" appended.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_PARAMETERIZED_URI \
|
|
|
|
_(" -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"\
|
|
|
|
" You can specify set of parts:\n"\
|
|
|
|
" http://{sv1,sv2,sv3}/foo.iso\n"\
|
|
|
|
" Also you can specify numeric sequences with step\n"\
|
|
|
|
" counter:\n"\
|
|
|
|
" http://host/image[000-100:2].img\n"\
|
|
|
|
" A step counter can be omitted.\n"\
|
|
|
|
" If all URIs do not point to the same file, such\n"\
|
|
|
|
" as the second example above, -Z option is\n"\
|
2008-09-22 09:26:57 +00:00
|
|
|
" required.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_ENABLE_HTTP_KEEP_ALIVE \
|
2008-05-06 15:26:43 +00:00
|
|
|
_(" --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_ENABLE_HTTP_PIPELINING \
|
2008-09-22 09:26:57 +00:00
|
|
|
_(" --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_CHECK_INTEGRITY \
|
|
|
|
_(" --check-integrity=true|false Check file integrity by validating piece hash.\n"\
|
|
|
|
" This option only affects in BitTorrent downloads\n"\
|
|
|
|
" and Metalink downloads with chunk checksums.\n"\
|
|
|
|
" Use this option to re-download a damaged portion\n"\
|
2008-09-22 09:26:57 +00:00
|
|
|
" of a file.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_REALTIME_CHUNK_CHECKSUM \
|
|
|
|
_(" --realtime-chunk-checksum=true|false Validate chunk checksum while\n"\
|
|
|
|
" downloading a file in Metalink mode. This option\n"\
|
2008-09-22 09:26:57 +00:00
|
|
|
" on affects Metalink mode with chunk checksums.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_CONTINUE \
|
|
|
|
_(" -c, --continue Continue downloading a partially downloaded\n"\
|
|
|
|
" file. Use this option to resume a download\n"\
|
|
|
|
" started by a web browser or another program\n"\
|
|
|
|
" which downloads files sequentially from the\n"\
|
|
|
|
" beginning. Currently this option is only\n"\
|
|
|
|
" applicable to http(s)/ftp downloads.")
|
|
|
|
#define TEXT_USER_AGENT \
|
|
|
|
_(" -U, --user-agent=USER_AGENT Set user agent for http(s) downloads.")
|
|
|
|
#define TEXT_NO_NETRC \
|
|
|
|
_(" -n, --no-netrc Disables netrc support.")
|
|
|
|
#define TEXT_INPUT_FILE \
|
|
|
|
_(" -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"\
|
|
|
|
" multiple URIs for a single entity: separate\n"\
|
|
|
|
" URIs on a single line using the TAB character.\n"\
|
|
|
|
" Reads input from stdin when '-' is specified.")
|
|
|
|
#define TEXT_MAX_CONCURRENT_DOWNLOADS \
|
2008-06-29 13:52:39 +00:00
|
|
|
_(" -j, --max-concurrent-downloads=N Set maximum number of parallel downloads for\n"\
|
|
|
|
" every static (HTTP/FTP) URL, torrent and metalink.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_LOAD_COOKIES \
|
2008-08-23 16:09:43 +00:00
|
|
|
_(" --load-cookies=FILE Load Cookies from FILE using the Firefox3 format\n"\
|
|
|
|
" and Mozilla/Firefox(1.x/2.x)/Netscape format.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_SHOW_FILES \
|
|
|
|
_(" -S, --show-files Print file listing of .torrent or .metalink file\n"\
|
|
|
|
" and exit. More detailed information will be listed\n"\
|
|
|
|
" in case of torrent file.")
|
|
|
|
#define TEXT_SELECT_FILE \
|
|
|
|
_(" --select-file=INDEX... Set file to download by specifing its index.\n"\
|
|
|
|
" You can find the file index using the\n"\
|
|
|
|
" --show-files option. Multiple indexes can be\n"\
|
|
|
|
" specified by using ',', for example: \"3,6\".\n"\
|
|
|
|
" You can also use '-' to specify a range: \"1-5\".\n"\
|
|
|
|
" ',' and '-' can be used together.\n"\
|
|
|
|
" When used with the -M option, index may vary\n"\
|
|
|
|
" depending on the query(see --metalink-* options).")
|
|
|
|
#define TEXT_TORRENT_FILE \
|
|
|
|
_(" -T, --torrent-file=TORRENT_FILE The path to the .torrent file.")
|
|
|
|
#define TEXT_FOLLOW_TORRENT \
|
|
|
|
_(" --follow-torrent=true|false|mem If true or mem is specified, when a file\n"\
|
|
|
|
" whose suffix is .torrent or content type is\n"\
|
|
|
|
" application/x-bittorrent is downloaded, aria2\n"\
|
|
|
|
" parses it as a torrent file and downloads files\n"\
|
|
|
|
" mentioned in it.\n"\
|
|
|
|
" If mem is specified, a torrent file is not\n"\
|
|
|
|
" written to the disk, but is just kept in memory.\n"\
|
|
|
|
" If false is specified, the action mentioned above\n"\
|
|
|
|
" is not taken.")
|
|
|
|
#define TEXT_DIRECT_FILE_MAPPING \
|
|
|
|
_(" --direct-file-mapping=true|false Directly read from and write to each file\n"\
|
2008-09-22 09:26:57 +00:00
|
|
|
" mentioned in .torrent file.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_LISTEN_PORT \
|
|
|
|
_(" --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"\
|
|
|
|
" Multiple ports can be specified by using ',',\n"\
|
|
|
|
" for example: \"6881,6885\". You can also use '-'\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"\
|
|
|
|
" 0 means unrestricted.\n"\
|
2008-09-22 09:26:57 +00:00
|
|
|
" You can append K or M(1K = 1024, 1M = 1024K).")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_SEED_TIME \
|
|
|
|
_(" --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"\
|
|
|
|
" --seed-ratio option.")
|
|
|
|
#define TEXT_SEED_RATIO \
|
|
|
|
_(" --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"\
|
|
|
|
" until share ratio reaches RATIO. 1.0 is\n"\
|
|
|
|
" encouraged. Specify 0.0 if you intend to do\n"\
|
|
|
|
" seeding regardless of share ratio.\n"\
|
|
|
|
" If --seed-time option is specified along with\n"\
|
|
|
|
" this option, seeding ends when at least one of\n"\
|
|
|
|
" the conditions is satisfied.")
|
|
|
|
#define TEXT_PEER_ID_PREFIX \
|
|
|
|
_(" --peer-id-prefix=PEERI_ID_PREFIX Specify the prefix of peer ID. The peer ID in\n"\
|
|
|
|
" BitTorrent is 20 byte length. If more than 20\n"\
|
|
|
|
" bytes are specified, only first 20\n"\
|
|
|
|
" bytes are used. If less than 20 bytes are\n"\
|
|
|
|
" specified, the random alphabet characters are\n"\
|
2008-09-22 09:26:57 +00:00
|
|
|
" added to make it's length 20 bytes.")
|
2008-01-05 16:02:25 +00:00
|
|
|
#define TEXT_ENABLE_PEER_EXCHANGE \
|
2008-02-18 17:37:54 +00:00
|
|
|
_(" --enable-peer-exchange[=true|false] Enable Peer Exchange extension.")
|
2008-02-01 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Added DHT functionality, compatible with mainline.
DHT is disabled by default. To enable it, give --enable-dht to
aria2c.
You may need to specify entry point to DHT network using
--dht-entry-point. DHT uses UDP port to listen incoming message.
Use --dht-listen-port to specify port number. Make sure that
your
firewall configuration can pass through UDP traffic to the port.
The routing table is saved in $HOME/.aria2/dht.dat.
* src/DHT*
* src/BNode.{h, cc}
* src/PeerInteractionCommand.cc: enable DHT functionality for a
particular torrent.
* src/Data.cc: Rewritten ctor.
* src/OptionHandlerFactory.cc: Added --enable-dht,
--dht-listen-port,
--dht-entry-point.
* src/DefaultBtInteractive.cc: Send port message if dht is
enabled.
* src/RequestGroup.cc: Initialize DHT functionality. When
download
ends, remove BtContext from DHTPeerAnnounceStorage.
* src/BtPortMessage.{h, cc}: Rewritten.
* src/message.h
* src/OptionHandlerImpl.cc
* src/option_processing.cc: Added --enable-dht,
--dht-listen-port,
--dht-entry-point.
* src/Dictionary.{h, cc} (remove): New function.
* src/prefs.h
* src/DefaultBtMessageFactory.h
* src/BtHandshakeMessage.cc
* src/ActivePeerConnectionCommand.cc
* src/SocketCore.{h, cc}: Added datagram socket support.
* src/DefaultBtMessageFactory.cc
* src/BtSetup.cc: Add BtContext to DHTPeerAnnounceStorage here.
Create DHT commands.
* src/BtMessageFactory.h
* src/PeerMessageUtil.{h, cc}
2008-02-01 17:36:33 +00:00
|
|
|
#define TEXT_ENABLE_DHT \
|
|
|
|
_(" --enable-dht[=true|false] Enable DHT functionality.")
|
|
|
|
#define TEXT_DHT_LISTEN_PORT \
|
2008-02-21 14:23:36 +00:00
|
|
|
_(" --dht-listen-port=PORT... Set UDP listening port for DHT.\n"\
|
2008-02-01 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Added DHT functionality, compatible with mainline.
DHT is disabled by default. To enable it, give --enable-dht to
aria2c.
You may need to specify entry point to DHT network using
--dht-entry-point. DHT uses UDP port to listen incoming message.
Use --dht-listen-port to specify port number. Make sure that
your
firewall configuration can pass through UDP traffic to the port.
The routing table is saved in $HOME/.aria2/dht.dat.
* src/DHT*
* src/BNode.{h, cc}
* src/PeerInteractionCommand.cc: enable DHT functionality for a
particular torrent.
* src/Data.cc: Rewritten ctor.
* src/OptionHandlerFactory.cc: Added --enable-dht,
--dht-listen-port,
--dht-entry-point.
* src/DefaultBtInteractive.cc: Send port message if dht is
enabled.
* src/RequestGroup.cc: Initialize DHT functionality. When
download
ends, remove BtContext from DHTPeerAnnounceStorage.
* src/BtPortMessage.{h, cc}: Rewritten.
* src/message.h
* src/OptionHandlerImpl.cc
* src/option_processing.cc: Added --enable-dht,
--dht-listen-port,
--dht-entry-point.
* src/Dictionary.{h, cc} (remove): New function.
* src/prefs.h
* src/DefaultBtMessageFactory.h
* src/BtHandshakeMessage.cc
* src/ActivePeerConnectionCommand.cc
* src/SocketCore.{h, cc}: Added datagram socket support.
* src/DefaultBtMessageFactory.cc
* src/BtSetup.cc: Add BtContext to DHTPeerAnnounceStorage here.
Create DHT commands.
* src/BtMessageFactory.h
* src/PeerMessageUtil.{h, cc}
2008-02-01 17:36:33 +00:00
|
|
|
" Multiple ports can be specified by using ',',\n"\
|
|
|
|
" for example: \"6881,6885\". You can also use '-'\n"\
|
|
|
|
" to specify a range: \"6881-6999\". ',' and '-' can\n"\
|
|
|
|
" be used together.")
|
|
|
|
#define TEXT_DHT_ENTRY_POINT \
|
|
|
|
_(" --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"\
|
|
|
|
" network.")
|
2008-10-10 11:35:32 +00:00
|
|
|
#define TEXT_DHT_FILE_PATH \
|
|
|
|
_(" --dht-file-path=PATH Change the DHT routing table file to PATH.")
|
2008-02-18 13:41:58 +00:00
|
|
|
#define TEXT_BT_MIN_CRYPTO_LEVEL \
|
|
|
|
_(" --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"\
|
|
|
|
" If several encryption methods are provided by a\n"\
|
|
|
|
" peer, aria2 chooses a lowest one which satisfies\n"\
|
2008-02-18 17:37:54 +00:00
|
|
|
" the given level.")
|
2008-02-18 13:41:58 +00:00
|
|
|
#define TEXT_BT_REQUIRE_CRYPTO \
|
|
|
|
_(" --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"\
|
|
|
|
" establish connection with legacy BitTorrent\n"\
|
2008-02-18 17:37:54 +00:00
|
|
|
" handshake. Thus aria2 always uses Obfuscation\n"\
|
|
|
|
" handshake.")
|
2008-06-04 10:14:48 +00:00
|
|
|
#define TEXT_BT_REQUEST_PEER_SPEED_LIMIT \
|
|
|
|
_(" --bt-request-peer-speed-limit=SPEED In BitTorrent downloads, if the download\n"\
|
|
|
|
" speed is lower than SPEED, aria2 initiates and\n"\
|
|
|
|
" accepts connections ignoring max peer cap.\n"\
|
|
|
|
" You can append K or M(1K = 1024, 1M = 1024K).")
|
2008-06-08 12:34:36 +00:00
|
|
|
#define TEXT_BT_MAX_OPEN_FILES \
|
|
|
|
_(" --bt-max-open-files=NUM Specify maximum number of files to open in each\n"\
|
|
|
|
" BitTorrent download.")
|
2008-07-12 13:54:36 +00:00
|
|
|
#define TEXT_BT_SEED_UNVERIFIED \
|
|
|
|
_(" --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"\
|
|
|
|
" verifying piece hashes.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_METALINK_FILE \
|
|
|
|
_(" -M, --metalink-file=METALINK_FILE The file path to the .metalink file.")
|
|
|
|
#define TEXT_METALINK_SERVERS \
|
|
|
|
_(" -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"\
|
2008-05-05 08:32:40 +00:00
|
|
|
" simultaneously.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_METALINK_VERSION \
|
|
|
|
_(" --metalink-version=VERSION The version of the file to download.")
|
|
|
|
#define TEXT_METALINK_LANGUAGE \
|
|
|
|
_(" --metalink-language=LANGUAGE The language of the file to download.")
|
|
|
|
#define TEXT_METALINK_OS \
|
|
|
|
_(" --metalink-os=OS The operating system of the file to download.")
|
|
|
|
#define TEXT_METALINK_LOCATION \
|
|
|
|
_(" --metalink-location=LOCATION[,...] The location of the preferred server.\n"\
|
|
|
|
" A comma-deliminated list of locations is\n"\
|
|
|
|
" acceptable.")
|
|
|
|
#define TEXT_METALINK_PREFERRED_PROTOCOL \
|
2008-09-22 10:31:00 +00:00
|
|
|
_(" --metalink-preferred-protocol=PROTO Specify preferred protocol. Specifiy 'none'\n"\
|
|
|
|
" if you don't have any preferred protocol.")
|
2008-01-05 11:26:56 +00:00
|
|
|
#define TEXT_FOLLOW_METALINK \
|
|
|
|
_(" --follow-metalink=true|false|mem If true or mem is specified, when a file\n"\
|
|
|
|
" whose suffix is .metaink or content type is\n"\
|
|
|
|
" application/metalink+xml is downloaded, aria2\n"\
|
|
|
|
" parses it as a metalink file and downloads files\n"\
|
|
|
|
" mentioned in it.\n"\
|
|
|
|
" If mem is specified, a metalink file is not\n"\
|
|
|
|
" written to the disk, but is just kept in memory.\n"\
|
|
|
|
" If false is specified, the action mentioned above\n"\
|
|
|
|
" is not taken.")
|
|
|
|
#define TEXT_METALINK_ENABLE_UNIQUE_PROTOCOL \
|
|
|
|
_(" --metalink-enable-unique-protocol=true|false If true is given and several\n"\
|
|
|
|
" protocols are available for a mirror in a metalink\n"\
|
|
|
|
" file, aria2 uses one of them.\n"\
|
|
|
|
" Use --metalink-preferred-protocol option to\n"\
|
|
|
|
" specify the preference of protocol.")
|
|
|
|
#define TEXT_VERSION \
|
|
|
|
_(" -v, --version Print the version number and exit.")
|
|
|
|
#define TEXT_HELP \
|
|
|
|
_(" -h, --help[=CATEGORY] Print usage and exit.\n"\
|
|
|
|
" The help messages are classified in several\n"\
|
|
|
|
" categories. For example, type \"--help=http\" for\n"\
|
|
|
|
" detailed explanation for the options related to\n"\
|
|
|
|
" http. If no matching category is found, search\n"\
|
2008-09-22 09:26:57 +00:00
|
|
|
" option name using a given word in middle match\n"\
|
2008-02-21 14:23:36 +00:00
|
|
|
" and print the result.")
|
2008-01-11 14:50:34 +00:00
|
|
|
#define TEXT_NO_CONF \
|
|
|
|
_(" --no-conf Disable loading aria2.conf file.")
|
|
|
|
#define TEXT_CONF_PATH \
|
|
|
|
_(" --conf-path=PATH Change the configuration file path to PATH.")
|
2008-02-11 05:07:08 +00:00
|
|
|
#define TEXT_STOP \
|
2008-02-20 12:33:16 +00:00
|
|
|
_(" --stop=SEC Stop application after SEC seconds has passed.\n" \
|
2008-02-11 05:07:08 +00:00
|
|
|
" If 0 is given, this feature is disabled.")
|
2008-04-20 06:30:44 +00:00
|
|
|
#define TEXT_HEADER \
|
|
|
|
_(" --header=HEADER Append HEADER to HTTP request header. You can use\n"\
|
|
|
|
" this option repeatedly to specify more than one\n"\
|
|
|
|
" header:\n"\
|
|
|
|
" aria2c --header=\"X-A: b78\" --header=\"X-B: 9J1\"\n"\
|
|
|
|
" http://host/file")
|
2008-04-22 10:29:48 +00:00
|
|
|
#define TEXT_QUIET \
|
|
|
|
_(" -q, --quiet[=true|false] Make aria2 quite (no console output).")
|
2008-05-08 11:18:36 +00:00
|
|
|
#define TEXT_ASYNC_DNS \
|
|
|
|
_(" --async-dns[=true|false] Enable asynchronous DNS.")
|
2008-05-09 14:44:28 +00:00
|
|
|
#define TEXT_FTP_REUSE_CONNECTION \
|
|
|
|
_(" --ftp-reuse-connection[=true|false] Reuse connection in FTP.")
|
2008-05-15 14:37:02 +00:00
|
|
|
#define TEXT_SUMMARY_INTERVAL \
|
|
|
|
_(" --summary-interval=SEC Set interval to output download progress summary.\n"\
|
|
|
|
" Setting 0 suppresses the output.")
|
2008-05-15 15:48:41 +00:00
|
|
|
#define TEXT_LOG_LEVEL \
|
|
|
|
_(" --log-level=LEVEL Set log level to output.")
|
2008-09-08 13:23:55 +00:00
|
|
|
#define TEXT_REMOTE_TIME \
|
|
|
|
_(" -R, --remote-time[=true|false] Retrieve timestamp of the remote file from the\n"\
|
|
|
|
" remote HTTP/FTP server and if it is available,\n"\
|
|
|
|
" apply it to the local file.")
|
2008-09-09 12:13:08 +00:00
|
|
|
#define TEXT_CONNECT_TIMEOUT \
|
|
|
|
_(" --connect-timeout=SEC Set the connect timeout in seconds to establish\n"\
|
|
|
|
" connection to HTTP/FTP/proxy server. After the\n"\
|
|
|
|
" connection is established, this option makes no\n"\
|
|
|
|
" effect and --timeout option is used instead.")
|
2008-09-10 14:56:44 +00:00
|
|
|
#define TEXT_MAX_FILE_NOT_FOUND \
|
|
|
|
_(" --max-file-not-found=NUM If aria2 recieves `file not found' status from the\n"\
|
|
|
|
" remote HTTP/FTP servers NUM times without getting\n"\
|
|
|
|
" a single byte, then force the download to fail.\n"\
|
|
|
|
" Specify 0 to disable this option.\n"\
|
|
|
|
" This options is only effective only when using\n"\
|
|
|
|
" HTTP/FTP servers.")
|
2008-09-14 13:40:25 +00:00
|
|
|
#define TEXT_URI_SELECTOR \
|
2008-09-22 09:26:57 +00:00
|
|
|
_(" --uri-selector=SELECTOR Specify URI selection algorithm.\n"\
|
2008-09-14 13:40:25 +00:00
|
|
|
" If 'inorder' is given, URI is tried in the order\n"\
|
|
|
|
" appeared in the URI list.\n"\
|
|
|
|
" If 'feedback' is given, aria2 uses download speed\n"\
|
|
|
|
" observed in the previous downloads and choose\n"\
|
|
|
|
" fastest server in the URI list. This also\n"\
|
|
|
|
" effectively skips dead mirrors. The observed\n"\
|
|
|
|
" download speed is a part of performance profile\n"\
|
|
|
|
" of servers mentioned in --server-stat-of and\n"\
|
|
|
|
" --server-stat-if options.")
|
|
|
|
#define TEXT_SERVER_STAT_OF \
|
|
|
|
_(" --server-stat-of=FILE Specify the filename to which performance profile\n"\
|
|
|
|
" of the servers is saved. You can load saved data\n"\
|
|
|
|
" using --server-stat-if option.")
|
|
|
|
#define TEXT_SERVER_STAT_IF \
|
|
|
|
_(" --server-stat-if=FILE Specify the filename to load performance profile\n"\
|
|
|
|
" of the servers. The loaded data will be used in\n"\
|
|
|
|
" some URI selector such as 'feedback'.\n"\
|
|
|
|
" See also --uri-selector option")
|
|
|
|
#define TEXT_SERVER_STAT_TIMEOUT \
|
|
|
|
_(" --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"\
|
|
|
|
" performance profile of the servers since the last\n"\
|
|
|
|
" contact to them.")
|
2008-10-13 13:07:53 +00:00
|
|
|
#define TEXT_AUTO_SAVE_INTERVAL \
|
|
|
|
_(" --auto-save-interval=SEC Save a control file(*.aria2) every SEC seconds.\n"\
|
|
|
|
" If 0 is given, a control file is not saved during\n"\
|
|
|
|
" download. aria2 saves a control file when it stops\n"\
|
|
|
|
" regardless of the value.")
|