From 87821dfc920b5d255983b79a42856519078b5ce0 Mon Sep 17 00:00:00 2001 From: Alex Dedul Date: Thu, 26 Jul 2007 17:59:57 +0000 Subject: [PATCH] * Removed unused max_number_downloads preference. * Changed max_number_uploads from -1 to 5 by default, with unlimited number of upload slots users have download speed issues. --- src/pref.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/pref.py b/src/pref.py index f55dc3a16..20e97c49e 100644 --- a/src/pref.py +++ b/src/pref.py @@ -64,11 +64,9 @@ DEFAULT_PREFS = { "max_connections" : 400, "max_download_speed" : -1, "max_download_speed_bps": -1, - "max_number_downloads" : -1, - "max_number_uploads" : -1, + "max_number_uploads" : 5, "max_upload_speed" : -1, "max_upload_speed_bps" : -1, - "max_number_uploads" : -1, "pref_rc4" : True, "prioritize_first_last_pieces" : False, "proxy_type" : common.ProxyType.none,