summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
commitc507ce3198ea4d822832cc8740f0128df8873c02 (patch)
tree260ca004916ae03b7d5438bf89007e3984da6934 /main.cpp
parentc8b2ef7b899766d04562f7e04a84251cea8fa701 (diff)
tagging ychat-0.3ychat-0.3
Diffstat (limited to 'main.cpp')
-rwxr-xr-xmain.cpp14
1 files changed, 1 insertions, 13 deletions
diff --git a/main.cpp b/main.cpp
index 08f89f8..f354907 100755
--- a/main.cpp
+++ b/main.cpp
@@ -37,18 +37,9 @@
// include the mutex manager for global synchronization.
#include "s_mutx.h"
-// include the module loader manager for global synchronization.
-#include "s_modl.h"
-
// include the socket manager.
#include "s_sock.h"
-// include the language manager
-#include "s_lang.h"
-
-// include the session manager
-#include "s_sman.h"
-
using namespace std;
int main()
@@ -80,12 +71,9 @@ cout << " ___ _ _ " << endl
s_mutx::init(); // init the mutex manager.
s_conf::init(); // init the config manager.
s_html::init(); // init the html-template manager.
- s_lang::init(); // init the language manager
- s_sman::init(); // init the session manager.
- s_modl::init(); // init the module-loader manager.
s_sock::init(); // init the socket manager.
s_chat::init(); // init the chat manager.
-
+
// start the socket manager. this one will listen for incoming http requests and will
// forward them to the specified routines which will generate a http response.
s_sock::get().start();