mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
change max num of connections to match utrorent's default of 200
This commit is contained in:
parent
ef234039f6
commit
076e04b642
1 changed files with 21 additions and 6 deletions
27
src/pref.py
27
src/pref.py
|
@ -61,7 +61,7 @@ DEFAULT_PREFS = {
|
||||||
"listen_on" : [6881,6889],
|
"listen_on" : [6881,6889],
|
||||||
"lock_tray" : False,
|
"lock_tray" : False,
|
||||||
"max_active_torrents" : -1,
|
"max_active_torrents" : -1,
|
||||||
"max_connections" : 400,
|
"max_connections" : 200,
|
||||||
"max_download_speed" : -1,
|
"max_download_speed" : -1,
|
||||||
"max_download_speed_bps": -1,
|
"max_download_speed_bps": -1,
|
||||||
"max_number_uploads" : 10,
|
"max_number_uploads" : 10,
|
||||||
|
@ -69,14 +69,29 @@ DEFAULT_PREFS = {
|
||||||
"max_upload_speed_bps" : -1,
|
"max_upload_speed_bps" : -1,
|
||||||
"pref_rc4" : True,
|
"pref_rc4" : True,
|
||||||
"prioritize_first_last_pieces" : False,
|
"prioritize_first_last_pieces" : False,
|
||||||
"proxy_type" : common.ProxyType.none,
|
"web_proxy_type" : common.ProxyType.none,
|
||||||
|
"peer_proxy_type" : common.ProxyType.none,
|
||||||
|
"dht_proxy_type" : common.ProxyType.none,
|
||||||
|
"tracker_proxy_type" : common.ProxyType.none,
|
||||||
"peer_proxy" : False,
|
"peer_proxy" : False,
|
||||||
"tracker_proxy" : False,
|
"tracker_proxy" : False,
|
||||||
"dht_proxy" : False,
|
"dht_proxy" : False,
|
||||||
"proxy_hostname" : "",
|
"peer_proxy_hostname" : "",
|
||||||
"proxy_username" : "",
|
"peer_proxy_username" : "",
|
||||||
"proxy_password" : "",
|
"peer_proxy_password" : "",
|
||||||
"proxy_port": 8080,
|
"peer_proxy_port": 8080,
|
||||||
|
"dht_proxy_hostname" : "",
|
||||||
|
"dht_proxy_username" : "",
|
||||||
|
"dht_proxy_password" : "",
|
||||||
|
"dht_proxy_port": 8080,
|
||||||
|
"web_proxy_hostname" : "",
|
||||||
|
"web_proxy_username" : "",
|
||||||
|
"web_proxy_password" : "",
|
||||||
|
"web_proxy_port": 8080,
|
||||||
|
"tracker_proxy_hostname" : "",
|
||||||
|
"tracker_proxy_username" : "",
|
||||||
|
"tracker_proxy_password" : "",
|
||||||
|
"tracker_proxy_port": 8080,
|
||||||
"queue_seeds_to_bottom" : False,
|
"queue_seeds_to_bottom" : False,
|
||||||
"random_port" : False,
|
"random_port" : False,
|
||||||
"show_availability" : True,
|
"show_availability" : True,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue