summaryrefslogtreecommitdiffstats
path: root/src/madc.cpp
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-05-06 17:39:30 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-05-06 17:39:30 +0200
commit8324b947487f72fd8cfc439ea5ae5bd1187fff1b (patch)
treee7fb69f3207654b5e3d4ba260d3f51082b1d399a /src/madc.cpp
parent5bf3e2229015d93808bb0c2f4729c2c4f4da414e (diff)
downloadmad-8324b947487f72fd8cfc439ea5ae5bd1187fff1b.tar
mad-8324b947487f72fd8cfc439ea5ae5bd1187fff1b.zip
Exception und ThreadHandler nach Net verschoben
Diffstat (limited to 'src/madc.cpp')
-rw-r--r--src/madc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/madc.cpp b/src/madc.cpp
index b0922a0..46455b0 100644
--- a/src/madc.cpp
+++ b/src/madc.cpp
@@ -20,12 +20,12 @@
#include "Net/Connection.h"
#include "Net/FdManager.h"
#include "Net/IPAddress.h"
+#include "Net/ThreadManager.h"
#include "Common/ClientConnection.h"
#include "Common/ConfigManager.h"
#include "Common/LogManager.h"
#include "Common/Logger.h"
#include "Common/RequestManager.h"
-#include "Common/ThreadManager.h"
#include "Client/CommandParser.h"
#include "Client/InformationManager.h"
@@ -81,7 +81,7 @@ int main(int argc, char *argv[]) {
Net::Connection::init();
- Common::ThreadManager::get()->init();
+ Net::ThreadManager::get()->init();
Client::InformationManager::get()->init();
Common::ConfigManager::get()->finish();
@@ -123,7 +123,7 @@ int main(int argc, char *argv[]) {
Common::RequestManager::get()->unregisterConnection(connection);
}
- catch(Mad::Common::Exception &e) {
+ catch(Net::Exception &e) {
Common::Logger::logf(Common::Logger::CRITICAL, "Connection error: %s", e.strerror().c_str());
}