aboutsummaryrefslogtreecommitdiff
path: root/src/server/authserver/Main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/authserver/Main.cpp')
-rw-r--r--src/server/authserver/Main.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/server/authserver/Main.cpp b/src/server/authserver/Main.cpp
index 732ed58a19c..9fe6fb276a8 100644
--- a/src/server/authserver/Main.cpp
+++ b/src/server/authserver/Main.cpp
@@ -33,6 +33,8 @@
#include "AsyncAcceptor.h"
#include "AuthSession.h"
+#include "BattlenetManager.h"
+#include "BattlenetSession.h"
#include "Common.h"
#include "Configuration/Config.h"
#include "Database/DatabaseEnv.h"
@@ -117,7 +119,7 @@ int main(int argc, char** argv)
std::string bindIp = sConfigMgr->GetStringDefault("BindIP", "0.0.0.0");
AsyncAcceptor<AuthSession> authServer(_ioService, bindIp, port);
- AsyncAcceptor<Battlenet::Socket> bnetServer(_ioService, bindIp, 1119);
+ AsyncAcceptor<Battlenet::Session> bnetServer(_ioService, bindIp, 1119);
// Set signal handlers
boost::asio::signal_set signals(_ioService, SIGINT, SIGTERM);