Change the default max global upload slots to 4 instead of -1 since

libtorrent will automatically open more slots to meet the upload speed 
limit.
This commit is contained in:
Andrew Resch 2008-09-29 19:12:27 +00:00
parent 3867989dbd
commit 244a437d1b
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ DEFAULT_PREFS = {
"max_connections_global": -1, "max_connections_global": -1,
"max_upload_speed": -1.0, "max_upload_speed": -1.0,
"max_download_speed": -1.0, "max_download_speed": -1.0,
"max_upload_slots_global": -1, "max_upload_slots_global": 4,
"max_half_open_connections": -1, "max_half_open_connections": -1,
"max_connections_per_second": -1, "max_connections_per_second": -1,
"ignore_limits_on_local_network": True, "ignore_limits_on_local_network": True,