123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /* <!-- copyright */
- /*
- * aria2 - a simple utility for downloading files faster
- *
- * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
- /* copyright --> */
- #ifndef _D_PREFS_H_
- #define _D_PREFS_H_
- #include "common.h"
- /**
- * Constants
- */
- #define V_TRUE "true"
- #define V_FALSE "false"
- /**
- * General preferences
- */
- // values: 1*digit
- #define PREF_RETRY_WAIT "retry_wait"
- // values: 1*digit
- #define PREF_TIMEOUT "timeout"
- // values: 1*digit
- #define PREF_MAX_TRIES "max_try"
- // values: 1*digit
- #define PREF_MIN_SEGMENT_SIZE "min_segment_size"
- // values: 1*digit
- #define PREF_AUTO_SAVE_INTERVAL "auto_save_interval"
- // values: true | false
- #define PREF_STDOUT_LOG "stdout_log"
- // values: a string that your file system recognizes as a file name.
- #define PREF_LOG "log"
- // values: a string that your file system recognizes as a directory.
- #define PREF_DIR "dir"
- // values: a string that your file system recognizes as a file name.
- #define PREF_OUT "out"
- // values: 1*digit
- #define PREF_SPLIT "split"
- // value: true | false
- #define PREF_DAEMON "daemon"
- // value: a string
- #define PREF_REFERER "referer"
- // value' 1*digit
- #define PREF_LOWEST_SPEED_LIMIT "lowest_speed_limit"
- /**
- * FTP related preferences
- */
- #define PREF_FTP_USER "ftp_user"
- #define PREF_FTP_PASSWD "ftp_passwd"
- // values: binary | ascii
- #define PREF_FTP_TYPE "ftp_type"
- # define V_BINARY "binary"
- # define V_ASCII "ascii"
- // values: get | tunnel
- #define PREF_FTP_VIA_HTTP_PROXY "ftp_via_http_proxy"
- # define V_GET "get"
- # define V_TUNNEL "tunnel"
- // values: true | false
- #define PREF_FTP_PASV_ENABLED "ftp_pasv_enabled"
- /**
- * HTTP related preferences
- */
- #define PREF_HTTP_USER "http_user"
- #define PREF_HTTP_PASSWD "http_passwd"
- // values: basic
- #define PREF_HTTP_AUTH_SCHEME "http_auth_scheme"
- # define V_BASIC "basic"
- // values: true | false
- #define PREF_HTTP_AUTH_ENABLED "http_auth_enabled"
- /**
- * HTTP proxy related preferences
- */
- #define PREF_HTTP_PROXY_USER "http_proxy_user"
- #define PREF_HTTP_PROXY_PASSWD "http_proxy_passwd"
- #define PREF_HTTP_PROXY_HOST "http_proxy_host"
- #define PREF_HTTP_PROXY_PORT "http_proxy_port"
- // values: get | tunnel
- #define PREF_HTTP_PROXY_METHOD "http_proxy_method"
- // values: true | false
- #define PREF_HTTP_PROXY_ENABLED "http_proxy_enabled"
- // values: true | false
- #define PREF_HTTP_PROXY_AUTH_ENABLED "http_proxy_auth_enabled"
- /**
- * BitTorrent related preferences
- */
- // values: 1*digit
- #define PREF_PEER_CONNECTION_TIMEOUT "peer_connection_timeout"
- // values: true | false
- #define PREF_SHOW_FILES "show_files"
- // values: true | false
- #define PREF_NO_PREALLOCATION "no_preallocation"
- // values: true | false
- #define PREF_DIRECT_FILE_MAPPING "direct_file_mapping"
- // values: 1*digit
- #define PREF_UPLOAD_LIMIT "upload_limit"
- // values: a string that your file system recognizes as a file name.
- #define PREF_TORRENT_FILE "torrent_file"
- // values: 1*digit
- #define PREF_LISTEN_PORT "listen_port"
- // values: true | false
- #define PREF_FOLLOW_TORRENT "follow_torrent"
- // values: 1*digit *( (,|-) 1*digit)
- #define PREF_SELECT_FILE "select_file"
- /**
- * Metalink related preferences
- */
- // values: a string that your file system recognizes as a file name.
- #define PREF_METALINK_FILE "metalink_file"
- // values: a string
- #define PREF_METALINK_VERSION "metalink_version"
- // values: a string
- #define PREF_METALINK_LANGUAGE "metalink_language"
- // values: a string
- #define PREF_METALINK_OS "metalink_os"
- // values: 1*digit
- #define PREF_METALINK_SERVERS "metalink_servers"
- // values: true | false
- #define PREF_FOLLOW_METALINK "follow_metalink"
- #endif // _D_PREFS_H_
|