gorg86 Guru
Joined: 20 May 2011 Posts: 317
|
Posted: Sat Dec 02, 2023 5:09 pm Post subject: [note to self] net-misc/aria2-1.37.0 connection limit |
|
|
Previous aria2-1.36.0 patch can still be used for aria2-1.37.0 Code: | --- a/src/OptionHandlerFactory.cc
+++ b/src/OptionHandlerFactory.cc
@@ -440,7 +440,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, 1024, 'x'));
op->addTag(TAG_BASIC);
op->addTag(TAG_FTP);
op->addTag(TAG_HTTP); |
|
|