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/init.cpp | |
parent | 8f8b1e46d670f45bafdc5c888bec3f005cc06c1f (diff) |
Added an epoll socket engine
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index 07597c829..b0f019ad3 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -352,6 +352,9 @@ int init_primary(int ac, char **av) /* Add Database Modules */ ModuleManager::LoadModuleList(Config.DBModuleList); + /* Load the socket engine */ + ModuleManager::LoadModule(Config.SocketEngine, NULL); + return 0; } |