| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320 | /* <!-- 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 --> */#include "prefs.h"namespace aria2 {/** * Constants */const std::string V_TRUE("true");const std::string V_FALSE("false");const std::string V_NONE("none");const std::string V_MEM("mem");const std::string V_ALL("all");/** * General preferences */// values: 1*digitconst std::string PREF_RETRY_WAIT("retry-wait");// values: 1*digitconst std::string PREF_TIMEOUT("timeout");// values: 1*digitconst std::string PREF_DNS_TIMEOUT("dns-timeout");// values: 1*digitconst std::string PREF_CONNECT_TIMEOUT("connect-timeout");// values: 1*digitconst std::string PREF_MAX_TRIES("max-tries");// values: 1*digitconst std::string PREF_AUTO_SAVE_INTERVAL("auto-save-interval");// values: a string that your file system recognizes as a file name.const std::string PREF_LOG("log");// values: a string that your file system recognizes as a directory.const std::string PREF_DIR("dir");// values: a string that your file system recognizes as a file name.const std::string PREF_OUT("out");// values: 1*digitconst std::string PREF_SPLIT("split");// value: true | falseconst std::string PREF_DAEMON("daemon");// value: a stringconst std::string PREF_REFERER("referer");// value: 1*digitconst std::string PREF_LOWEST_SPEED_LIMIT("lowest-speed-limit");// value: 1*digitconst std::string PREF_SEGMENT_SIZE("segment-size");// value: 1*digitconst std::string PREF_MAX_OVERALL_DOWNLOAD_LIMIT("max-overall-download-limit");// value: 1*digitconst std::string PREF_MAX_DOWNLOAD_LIMIT("max-download-limit");// value: 1*digitconst std::string PREF_STARTUP_IDLE_TIME("startup-idle-time");// value: prealloc | noneconst std::string PREF_FILE_ALLOCATION("file-allocation");const std::string V_PREALLOC("prealloc");#// value: 1*digitconst std::string PREF_NO_FILE_ALLOCATION_LIMIT("no-file-allocation-limit");// value: true | falseconst std::string PREF_ALLOW_OVERWRITE("allow-overwrite");// value: true | falseconst std::string PREF_REALTIME_CHUNK_CHECKSUM("realtime-chunk-checksum");// value: true | falseconst std::string PREF_CHECK_INTEGRITY("check-integrity");// value: string that your file system recognizes as a file name.const std::string PREF_NETRC_PATH("netrc-path");// value:const std::string PREF_CONTINUE("continue");// value:const std::string PREF_NO_NETRC("no-netrc");// value: 1*digitconst std::string PREF_MAX_DOWNLOADS("max-downloads");// value: string that your file system recognizes as a file name.const std::string PREF_INPUT_FILE("input-file");// value: 1*digitconst std::string PREF_MAX_CONCURRENT_DOWNLOADS("max-concurrent-downloads");// value: true | falseconst std::string PREF_FORCE_SEQUENTIAL("force-sequential");// value: true | falseconst std::string PREF_AUTO_FILE_RENAMING("auto-file-renaming");// value: true | falseconst std::string PREF_PARAMETERIZED_URI("parameterized-uri");// value: true | falseconst std::string PREF_ENABLE_DIRECT_IO("enable-direct-io");// value: true | falseconst std::string PREF_ALLOW_PIECE_LENGTH_CHANGE("allow-piece-length-change");// value: true | falseconst std::string PREF_NO_CONF("no-conf");// value: stringconst std::string PREF_CONF_PATH("conf-path");// value: 1*digitconst std::string PREF_STOP("stop");// value: true | falseconst std::string PREF_QUIET("quiet");// value: true | falseconst std::string PREF_ASYNC_DNS("async-dns");// value: 1*digitconst std::string PREF_SUMMARY_INTERVAL("summary-interval");// value: debug, info, notice, warn, errorconst std::string PREF_LOG_LEVEL("log-level");const std::string V_DEBUG("debug");const std::string V_INFO("info");const std::string V_NOTICE("notice");const std::string V_WARN("warn");const std::string V_ERROR("error");// value: inorder | feedback | adaptiveconst std::string PREF_URI_SELECTOR("uri-selector");const std::string V_INORDER("inorder");const std::string V_FEEDBACK("feedback");const std::string V_ADAPTIVE("adaptive");// value: 1*digitconst std::string PREF_SERVER_STAT_TIMEOUT("server-stat-timeout");// value: string that your file system recognizes as a file name.const std::string PREF_SERVER_STAT_IF("server-stat-if");// value: string that your file system recognizes as a file name.const std::string PREF_SERVER_STAT_OF("server-stat-of");// value: true | falseconst std::string PREF_REMOTE_TIME("remote-time");// value: 1*digitconst std::string PREF_MAX_FILE_NOT_FOUND("max-file-not-found");// value: epoll | selectconst std::string PREF_EVENT_POLL("event-poll");const std::string V_EPOLL("epoll");const std::string V_SELECT("select");// value: 1*digitconst std::string PREF_HTTP_SERVER_LISTEN_PORT("http-server-listen-port");// value: true | falseconst std::string PREF_ENABLE_HTTP_SERVER("enable-http-server");// value: true | falseconst std::string PREF_RESET_URI("reset-uri");// value: true | falseconst std::string PREF_DRY_RUN("dry-run");// value: true | falseconst std::string PREF_REUSE_URI("reuse-uri");/** * FTP related preferences */const std::string PREF_FTP_USER("ftp-user");const std::string PREF_FTP_PASSWD("ftp-passwd");// values: binary | asciiconst std::string PREF_FTP_TYPE("ftp-type");const std::string V_BINARY("binary");const std::string V_ASCII("ascii");// values: true | falseconst std::string PREF_FTP_PASV("ftp-pasv");// values: true | falseconst std::string PREF_FTP_REUSE_CONNECTION("ftp-reuse-connection");/** * HTTP related preferences */const std::string PREF_HTTP_USER("http-user");const std::string PREF_HTTP_PASSWD("http-passwd");// values: basicconst std::string PREF_HTTP_AUTH_SCHEME("http-auth-scheme");const std::string V_BASIC("basic");// values: stringconst std::string PREF_USER_AGENT("user-agent");// value: string that your file system recognizes as a file name.const std::string PREF_LOAD_COOKIES("load-cookies");// values: true | falseconst std::string PREF_ENABLE_HTTP_KEEP_ALIVE("enable-http-keep-alive");// values: true | falseconst std::string PREF_ENABLE_HTTP_PIPELINING("enable-http-pipelining");// value: 1*digitconst std::string PREF_MAX_HTTP_PIPELINING("max-http-pipelining");// value: stringconst std::string PREF_HEADER("header");// value: string that your file system recognizes as a file name.const std::string PREF_CERTIFICATE("certificate");// value: string that your file system recognizes as a file name.const std::string PREF_PRIVATE_KEY("private-key");// value: string that your file system recognizes as a file name.const std::string PREF_CA_CERTIFICATE("ca-certificate");// value: true | falseconst std::string PREF_CHECK_CERTIFICATE("check-certificate");// value: true | falseconst std::string PREF_USE_HEAD("use-head");// value: true | falseconst std::string PREF_HTTP_AUTH_CHALLENGE("http-auth-challenge");/**  * Proxy related preferences */const std::string PREF_HTTP_PROXY("http-proxy");const std::string PREF_HTTPS_PROXY("https-proxy");const std::string PREF_FTP_PROXY("ftp-proxy");const std::string PREF_ALL_PROXY("all-proxy");// values: comma separeted hostname or domainconst std::string PREF_NO_PROXY("no-proxy");// values: get | tunnelconst std::string PREF_PROXY_METHOD("proxy-method");const std::string V_GET("get");const std::string V_TUNNEL("tunnel");/** * BitTorrent related preferences */// values: 1*digitconst std::string PREF_PEER_CONNECTION_TIMEOUT("peer-connection-timeout");// values: 1*digitconst std::string PREF_BT_TIMEOUT("bt-timeout");// values: 1*digitconst std::string PREF_BT_REQUEST_TIMEOUT("bt-request-timeout");// values: true | falseconst std::string PREF_SHOW_FILES("show-files");// values: 1*digitconst std::string PREF_MAX_OVERALL_UPLOAD_LIMIT("max-overall-upload-limit");// values: 1*digitconst std::string PREF_MAX_UPLOAD_LIMIT("max-upload-limit");// values: a string that your file system recognizes as a file name.const std::string PREF_TORRENT_FILE("torrent-file");// values: 1*digitconst std::string PREF_LISTEN_PORT("listen-port");// values: true | false | memconst std::string PREF_FOLLOW_TORRENT("follow-torrent");// values: 1*digit *( (,|-) 1*digit);const std::string PREF_SELECT_FILE("select-file");// values: 1*digitconst std::string PREF_SEED_TIME("seed-time");// values: 1*digit ['.' [ 1*digit ] ]const std::string PREF_SEED_RATIO("seed-ratio");// values: 1*digitconst std::string PREF_BT_KEEP_ALIVE_INTERVAL("bt-keep-alive-interval");// values: a string, less than or equals to 20 bytes lengthconst std::string PREF_PEER_ID_PREFIX("peer-id-prefix");// values: true | falseconst std::string PREF_ENABLE_PEER_EXCHANGE("enable-peer-exchange");// values: true | falseconst std::string PREF_ENABLE_DHT("enable-dht");// values: 1*digitconst std::string PREF_DHT_LISTEN_PORT("dht-listen-port");// values: a stringconst std::string PREF_DHT_ENTRY_POINT_HOST("dht-entry-point-host");// values: 1*digitconst std::string PREF_DHT_ENTRY_POINT_PORT("dht-entry-point-port");// values: a string (hostname:port);const std::string PREF_DHT_ENTRY_POINT("dht-entry-point");// values: a stringconst std::string PREF_DHT_FILE_PATH("dht-file-path");// values: plain | arc4const std::string PREF_BT_MIN_CRYPTO_LEVEL("bt-min-crypto-level");const std::string V_PLAIN("plain");const std::string V_ARC4("arc4");// values:: true | falseconst std::string PREF_BT_REQUIRE_CRYPTO("bt-require-crypto");// values: 1*digitconst std::string PREF_BT_REQUEST_PEER_SPEED_LIMIT("bt-request-peer-speed-limit");// values: 1*digitconst std::string PREF_BT_MAX_OPEN_FILES("bt-max-open-files");// values: true | falseconst std::string PREF_BT_SEED_UNVERIFIED("bt-seed-unverified");// values: true | falseconst std::string PREF_BT_HASH_CHECK_SEED("bt-hash-check-seed");// values: 1*digitconst std::string PREF_BT_MAX_PEERS("bt-max-peers");// values: a string (IP address)const std::string PREF_BT_EXTERNAL_IP("bt-external-ip");// values: 1*digit '=' a string that your file system recognizes as a file name.const std::string PREF_INDEX_OUT("index-out");// values: 1*digitconst std::string PREF_BT_TRACKER_INTERVAL("bt-tracker-interval");/** * Metalink related preferences */// values: a string that your file system recognizes as a file name.const std::string PREF_METALINK_FILE("metalink-file");// values: a stringconst std::string PREF_METALINK_VERSION("metalink-version");// values: a stringconst std::string PREF_METALINK_LANGUAGE("metalink-language");// values: a stringconst std::string PREF_METALINK_OS("metalink-os");// values: a stringconst std::string PREF_METALINK_LOCATION("metalink-location");// values: 1*digitconst std::string PREF_METALINK_SERVERS("metalink-servers");// values: true | false | memconst std::string PREF_FOLLOW_METALINK("follow-metalink");// values: http | https | ftp | noneconst std::string PREF_METALINK_PREFERRED_PROTOCOL("metalink-preferred-protocol");const std::string V_HTTP("http");const std::string V_HTTPS("https");const std::string V_FTP("ftp");// values: true | falseconst std::string PREF_METALINK_ENABLE_UNIQUE_PROTOCOL("metalink-enable-unique-protocol");} // namespace aria2
 |