From 9247a35c622bf730449826a1f81226b53c641914 Mon Sep 17 00:00:00 2001 From: Philipp Sehmisch Date: Fri, 2 Oct 2009 16:02:40 +0200 Subject: Game-server now tries again when failing to connect to account-server. Reconnect intervals become longer and longer. --- src/game-server/main-game.cpp | 17 +++++++++++++++-- 1 file 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(); -- cgit v1.2.3-70-g09d2