diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-04-23 15:01:15 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-04-23 15:01:15 +0200 |
commit | b742311a7039655c63c4d08902b43cebdeeb8d33 (patch) | |
tree | 15366c71acfbf11d205ef24943ee6ba0e16324c4 /src/configreader.cpp | |
parent | 25d00181cd5a6b89c926e188e5f7569335ca64d0 (diff) |
Add config option to disable somaxconn range() check
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r-- | src/configreader.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 2577b83b8..e8707cc3e 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -554,7 +554,8 @@ void ServerConfig::Fill() WelcomeNotice = options->getBool("welcomenotice", true); range(SoftLimit, 10, ServerInstance->SE->GetMaxFds(), ServerInstance->SE->GetMaxFds(), "<performance:softlimit>"); - range(MaxConn, 0, SOMAXCONN, SOMAXCONN, "<performance:somaxconn>"); + if (ConfValue("performance")->getBool("limitsomaxconn", true)) + range(MaxConn, 0, SOMAXCONN, SOMAXCONN, "<performance:somaxconn>"); range(MaxTargets, 1, 31, 20, "<security:maxtargets>"); range(NetBufferSize, 1024, 65534, 10240, "<performance:netbuffersize>"); range(WhoWasGroupSize, 0, 10000, 10, "<whowas:groupsize>"); |