diff options
| author | 2013-07-02 11:10:36 -0700 | |
|---|---|---|
| committer | 2013-07-02 11:10:36 -0700 | |
| commit | 4c12eafe612932f4b3f6806fc1bea79942998941 (patch) | |
| tree | ed742758f5468a63f434ac5fe1994d35c455a561 /src/configreader.cpp | |
| parent | Merge pull request #569 from ShutterQuick/inspircd+asrootfix (diff) | |
| parent | Allow for skipping clone checking before DNS is complete. (diff) | |
| download | inspircd++-4c12eafe612932f4b3f6806fc1bea79942998941.tar.gz inspircd++-4c12eafe612932f4b3f6806fc1bea79942998941.tar.bz2 inspircd++-4c12eafe612932f4b3f6806fc1bea79942998941.zip | |
Merge pull request #571 from ShutterQuick/inspircd+checkclone
Allow for skipping clone checking before DNS is complete.
Diffstat (limited to 'src/configreader.cpp')
| -rw-r--r-- | src/configreader.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 427bc79bf..31287b396 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -387,6 +387,7 @@ void ServerConfig::Fill() SuffixPart = options->getString("suffixpart"); FixedPart = options->getString("fixedpart"); SoftLimit = ConfValue("performance")->getInt("softlimit", ServerInstance->SE->GetMaxFds()); + CCOnConnect = ConfValue("performance")->getBool("clonesonconnect", true); MaxConn = ConfValue("performance")->getInt("somaxconn", SOMAXCONN); MoronBanner = options->getString("moronbanner", "You're banned!"); ServerDesc = ConfValue("server")->getString("description", "Configure Me"); |
