diff options
author | Adam <Adam@anope.org> | 2010-07-08 22:19:13 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-07-08 22:19:13 -0400 |
commit | 1cf4ebb231f2f7770b717a5e176d7bb5cbc66284 (patch) | |
tree | 16094a36484e2764c5f541c4324e1d2a6300f61b /src/config.cpp | |
parent | 8f8b1e46d670f45bafdc5c888bec3f005cc06c1f (diff) |
Added an epoll socket engine
Diffstat (limited to 'src/config.cpp')
-rw-r--r-- | src/config.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.cpp b/src/config.cpp index 93a65f9ba..5785c4452 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -21,6 +21,7 @@ ServerConfig Config; static ci::string Modules; static ci::string EncModules; static ci::string DBModules; +static ci::string SocketEngineModule; static ci::string HostCoreModules; static ci::string MemoCoreModules; static ci::string BotCoreModules; @@ -629,6 +630,7 @@ int ServerConfig::Read(bool bail) {"options", "encryption", "", new ValueContainerCIString(&EncModules), DT_CISTRING | DT_NORELOAD, ValidateNotEmpty}, {"options", "passlen", "32", new ValueContainerUInt(&Config.PassLen), DT_UINTEGER | DT_NORELOAD, NoValidation}, {"options", "database", "", new ValueContainerCIString(&DBModules), DT_CISTRING | DT_NORELOAD, ValidateNotEmpty}, + {"options", "socketengine", "", new ValueContainerCIString(&Config.SocketEngine), DT_CISTRING | DT_NORELOAD, ValidateNotEmpty}, {"options", "userkey1", "0", new ValueContainerLUInt(&Config.UserKey1), DT_LUINTEGER, NoValidation}, {"options", "userkey2", "0", new ValueContainerLUInt(&Config.UserKey2), DT_LUINTEGER, NoValidation}, {"options", "userkey3", "0", new ValueContainerLUInt(&Config.UserKey3), DT_LUINTEGER, NoValidation}, |