diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-12-28 00:17:15 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-12-28 00:17:15 +0100 |
commit | 0f91dcb371334286b43fafffc5e4f605bd184f9d (patch) | |
tree | f6c77c71136482d4cf38fe2447c6374e3ce0e4ad /module/config/default.conf | |
parent | api fixes (diff) | |
download | pyload-0f91dcb371334286b43fafffc5e4f605bd184f9d.tar.xz |
working speedlimit + proxy support, closed #197
Diffstat (limited to 'module/config/default.conf')
-rw-r--r-- | module/config/default.conf | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/module/config/default.conf b/module/config/default.conf index 884891375..143e2520f 100644 --- a/module/config/default.conf +++ b/module/config/default.conf @@ -23,16 +23,19 @@ log - "Log": general - "General":
en;de;it;pl;es language : "Language" = en
folder download_folder : "Download Folder" = Downloads
- int max_downloads : "Max Parallel Downloads" = 3
bool debug_mode : "Debug Mode" = False
- int max_download_time : "Max Download Time" = 5
bool checksum : "Use Checksum" = False
int min_free_space : "Min Free Space (MB)" = 200
bool folder_per_package : "Create folder for each package" = True
bool skip_existing : "Skip already existing files" = False
- ip download_interface : "Outgoing IP address for downloads" = None
int renice : "CPU Priority" = 0
- int chunks : "Max connections for one download" = 4
+download - "Download":
+ int chunks : "Max connections for one download" = 4
+ int max_downloads : "Max Parallel Downloads" = 3
+ int max_speed : "Max Download Speed kb/s" = -1
+ bool limit_speed : "Limit Download Speed" = False
+ bool proxy : "Use Proxy" = False
+ str interface : "Download interface to bind (ip or Name)" = None
permission - "Permissions":
bool change_user : "Change user of running process" = False
str user : "Username" = user
@@ -51,6 +54,8 @@ downloadTime - "Download Time": time start : "Start" = 0:00
time end : "End" = 0:00
proxy - "Proxy":
- bool activated : "Activated" = False
- str address : "Address" = http://localhost:8080
- str protocol : "Protocol" = http
+ str address : "Address" = "localhost"
+ int port : "Port" = 7070
+ str type : "Protocol (http|socks4|socks5)" = http
+ str username : "Username" = None
+ str password : "Password" = None
|