diff options
-rw-r--r-- | src/game-server/main-game.cpp | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/game-server/main-game.cpp b/src/game-server/main-game.cpp index 6a223cd0..ebc92d41 100644 --- a/src/game-server/main-game.cpp +++ b/src/game-server/main-game.cpp @@ -298,7 +298,20 @@ int main(int argc, char *argv[]) initialize(); // Make an initial attempt to connect to the account server - accountHandler->start(); + // Try again after longer and longer intervals when connection fails. + bool isConnected = false; + int waittime = 0; + while (!isConnected) + { + LOG_INFO("Connecting to account server"); + isConnected = accountHandler->start(); + if (!isConnected) + { + LOG_INFO("Retrying in "<<++waittime<<" seconds"); + Sleep(waittime * 1000); + } + + } if (!gameHandler->startListen(options.port)) { @@ -335,7 +348,7 @@ int main(int argc, char *argv[]) if (accountHandler->isConnected()) { accountServerLost = false; - + // Handle all messages that are in the message queues accountHandler->process(); |