Initial Socket Server implementation with CMakeLists.txt updated. Socket server will connect to world at this point.

This commit is contained in:
Chris M
2014-07-02 22:17:45 -05:00
parent bd86e70766
commit a92b4c04e9
18 changed files with 735 additions and 6 deletions
+4
View File
@@ -86,6 +86,7 @@
#include "AdventureManager.h"
#include "ucs.h"
#include "queryserv.h"
#include "socket_server.h"
TimeoutManager timeout_manager;
EQStreamFactory eqsf(WorldStream,9000);
@@ -97,6 +98,7 @@ LoginServerList loginserverlist;
EQWHTTPServer http_server;
UCSConnection UCSLink;
QueryServConnection QSLink;
Socket_Server_Connection SSLink;
LauncherList launcher_list;
AdventureManager adventure_manager;
DBAsync *dbasync = nullptr;
@@ -454,6 +456,8 @@ int main(int argc, char** argv) {
QSLink.Process();
SSLink.Process();
LFPGroupList.Process();
adventure_manager.Process();