sets default per-torrent download limit to infinite in client_test

This commit is contained in:
Arvid Norberg 2008-01-13 10:10:44 +00:00
parent f48ded8a54
commit 72eee8838c
1 changed files with 1 additions and 1 deletions

View File

@ -575,7 +575,7 @@ int main(int ac, char* av[])
, "the maximum upload rate given in kB/s. 0 means infinite.")
("max-torrent-upload-rate", po::value<int>(&torrent_upload_limit)->default_value(20)
, "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(20)
("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)
, "the maximum number of upload slots. 0 means infinite.")