forked from premiere/premiere-libtorrent
changed default to 5 upload slots in client_test
This commit is contained in:
parent
9d1e77dc88
commit
f16b5d0c7a
|
@ -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.")
|
, "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)
|
("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.")
|
, "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.")
|
, "the maximum number of upload slots. 0 means infinite.")
|
||||||
("save-path,s", po::value<std::string>(&save_path_str)->default_value("./")
|
("save-path,s", po::value<std::string>(&save_path_str)->default_value("./")
|
||||||
, "the path where the downloaded file/folder should be placed.")
|
, "the path where the downloaded file/folder should be placed.")
|
||||||
|
|
Loading…
Reference in New Issue