Renamed WorldTcpSession back to WorldSocket

This commit is contained in:
leak
2014-07-07 22:03:41 +02:00
parent c7d5660e99
commit a738cd96dc
7 changed files with 37 additions and 37 deletions

View File

@@ -43,7 +43,7 @@
#include "TCSoap.h"
#include "CliRunnable.h"
#include "SystemConfig.h"
#include "WorldTcpSession.h"
#include "WorldSocket.h"
#define TRINITY_CORE_CONFIG "worldserver.conf"
#define WORLD_SLEEP_CONST 50
@@ -230,7 +230,7 @@ extern int main(int argc, char** argv)
std::string worldListener = sConfigMgr->GetStringDefault("BindIP", "0.0.0.0");
bool tcpNoDelay = sConfigMgr->GetBoolDefault("Network.TcpNodelay", true);
AsyncAcceptor<WorldTcpSession> worldAcceptor(_ioService, worldListener, worldPort, tcpNoDelay);
AsyncAcceptor<WorldSocket> worldAcceptor(_ioService, worldListener, worldPort, tcpNoDelay);
sScriptMgr->OnStartup();