From 72eee8838c67ae4648f6659469a5dbd7da1dee16 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sun, 13 Jan 2008 10:10:44 +0000 Subject: [PATCH] sets default per-torrent download limit to infinite 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 b4d9d3fa0..7ed6eac91 100644 --- a/examples/client_test.cpp +++ b/examples/client_test.cpp @@ -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(&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(&torrent_download_limit)->default_value(20) + ("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) , "the maximum number of upload slots. 0 means infinite.")