diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-07-25 19:21:22 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-07-25 19:21:22 +0000 |
commit | 33e19fb0822308a630ca6e1122b9b97882a120a7 (patch) | |
tree | 78f80d6673bd5e52431d2fad986c0f1416dfd780 /src/net/network.cpp | |
parent | c7e7b62aa94bf295ca1dc556762ad6070221e0cd (diff) | |
download | mana-33e19fb0822308a630ca6e1122b9b97882a120a7.tar.gz mana-33e19fb0822308a630ca6e1122b9b97882a120a7.tar.bz2 mana-33e19fb0822308a630ca6e1122b9b97882a120a7.tar.xz mana-33e19fb0822308a630ca6e1122b9b97882a120a7.zip |
Fixed Linux compiling issues and merged update system fix for Windows.
Diffstat (limited to 'src/net/network.cpp')
-rw-r--r-- | src/net/network.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/network.cpp b/src/net/network.cpp index 8278e266..aa18e888 100644 --- a/src/net/network.cpp +++ b/src/net/network.cpp @@ -40,13 +40,13 @@ Network::~Network() { clearHandlers(); - if (mState != IDLE && mState != ERROR) + if (mState != IDLE && mState != NET_ERROR) disconnect(); } bool Network::connect(const std::string &address, short port) { - if (mState != IDLE && mState != ERROR) + if (mState != IDLE && mState != NET_ERROR) { logger->log("Tried to connect an already connected socket!"); return false; @@ -55,7 +55,7 @@ bool Network::connect(const std::string &address, short port) if (address.empty()) { logger->log("Empty address given to Network::connect()!"); - mState = ERROR; + mState = NET_ERROR; return false; } @@ -84,7 +84,7 @@ bool Network::connect(const std::string &address, short port) if (mServer == 0) { logger->log("Unable to initiate connection to the server."); - mState = ERROR; + mState = NET_ERROR; return false; } |