From f16b5d0c7a5d5151bb6a75c75d8dc7f1f62249e5 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sat, 7 Jun 2008 14:02:26 +0000 Subject: [PATCH] changed default to 5 upload slots in client_test --- examples/client_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/client_test.cpp b/examples/client_test.cpp index 9b87cbc36..bead43561 100644 --- a/examples/client_test.cpp +++ b/examples/client_test.cpp @@ -632,7 +632,7 @@ int main(int ac, char* av[]) , "the maximum upload rate for an individual torrent, given in kB/s. 0 means infinite.") ("max-torrent-download-rate", po::value(&torrent_download_limit)->default_value(0) , "the maximum download rate for an individual torrent, given in kB/s. 0 means infinite.") - ("max-upload-slots", po::value(&upload_slots_limit)->default_value(8) + ("max-upload-slots", po::value(&upload_slots_limit)->default_value(5) , "the maximum number of upload slots. 0 means infinite.") ("save-path,s", po::value(&save_path_str)->default_value("./") , "the path where the downloaded file/folder should be placed.")