Allow --max-connection-per-server to go up to 128.

Some ISPs seem to limit the maximum bitrate per TCP session through some
routes. Greatly increasing the number of connections to a remote server
allows user to bypass these artificial limitations.
pull/648/head
Stephane Sezer 2016-05-08 23:01:31 -07:00
parent e174b90ff2
commit 3e3eb8ac6a
1 changed files with 1 additions and 1 deletions

View File

@ -419,7 +419,7 @@ std::vector<OptionHandler*> OptionHandlerFactory::createOptionHandlers()
{
OptionHandler* op(new NumberOptionHandler(PREF_MAX_CONNECTION_PER_SERVER,
TEXT_MAX_CONNECTION_PER_SERVER,
"1", 1, 16, 'x'));
"1", 1, 128, 'x'));
op->addTag(TAG_BASIC);
op->addTag(TAG_FTP);
op->addTag(TAG_HTTP);