changed default to 5 upload slots in client_test

This commit is contained in:
Arvid Norberg 2008-06-07 14:02:26 +00:00
parent 9d1e77dc88
commit f16b5d0c7a
1 changed files with 1 additions and 1 deletions

View File

@ -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<int>(&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<int>(&upload_slots_limit)->default_value(8)
("max-upload-slots", po::value<int>(&upload_slots_limit)->default_value(5)
, "the maximum number of upload slots. 0 means infinite.")
("save-path,s", po::value<std::string>(&save_path_str)->default_value("./")
, "the path where the downloaded file/folder should be placed.")