From bed43cf34883d5bf2681c50948e0ddf153846fbb Mon Sep 17 00:00:00 2001 From: David Athay Date: Fri, 21 Nov 2008 09:32:54 +0000 Subject: Added bandwidth monitor to account server. Fixes compile errors. --- src/account-server/main-account.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/account-server/main-account.cpp') diff --git a/src/account-server/main-account.cpp b/src/account-server/main-account.cpp index e6a521cf..f2373d28 100644 --- a/src/account-server/main-account.cpp +++ b/src/account-server/main-account.cpp @@ -38,6 +38,7 @@ #include "chat-server/guildmanager.hpp" #include "chat-server/post.hpp" #include "common/configuration.hpp" +#include "net/bandwidth.hpp" #include "net/connectionhandler.hpp" #include "net/messageout.hpp" #include "utils/logger.h" @@ -69,6 +70,9 @@ GuildManager *guildManager; /** Post Manager */ PostManager *postalManager; +/** Bandwidth Monitor */ +BandwidthMonitor *gBandwidth; + /** Callback used when SIGQUIT signal is received. */ static void closeGracefully(int) { @@ -159,6 +163,8 @@ static void initialize() guildManager = new GuildManager; // Initialise the post manager postalManager = new PostManager; + // Initialise the bandwidth monitor + gBandwidth = new BandwidthMonitor; // --- Initialize the global handlers // FIXME: Make the global handlers global vars or part of a bigger @@ -201,6 +207,7 @@ static void deinitialize() delete chatChannelManager; delete guildManager; delete postalManager; + delete gBandwidth; // Get rid of persistent data storage delete storage; -- cgit v1.2.3-60-g2f50