diff options
author | Matthias Schiffer <matthias@gamezock.de> | 2009-09-30 14:56:33 +0200 |
---|---|---|
committer | Matthias Schiffer <matthias@gamezock.de> | 2009-09-30 14:56:33 +0200 |
commit | 241f1947580df7f905ed3d6969cc3a6a4bb99f5a (patch) | |
tree | 92c40dbf873b21c66cad7734a52b13a06178d0c7 /src/Common | |
parent | a158d1f367759bf0c110b2fdb21d7c00f5a9cea6 (diff) | |
download | mad-241f1947580df7f905ed3d6969cc3a6a4bb99f5a.tar mad-241f1947580df7f905ed3d6969cc3a6a4bb99f5a.zip |
ConnectionManager: Forgot to get the daemon list from the ConfigManager
Diffstat (limited to 'src/Common')
-rw-r--r-- | src/Common/HostInfo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Common/HostInfo.h b/src/Common/HostInfo.h index bd4afba..f70322c 100644 --- a/src/Common/HostInfo.h +++ b/src/Common/HostInfo.h @@ -35,7 +35,7 @@ class HostInfo { private: Core::String name; - std::string ip; + Core::String ip; State state; @@ -45,8 +45,8 @@ class HostInfo { void setName(const Core::String &newName) {name = newName;} const Core::String& getName() const {return name;} - void setIP(const std::string& newIp) {ip = newIp;} - const std::string& getIP() const {return ip;} + void setIP(const Core::String& newIp) {ip = newIp;} + const Core::String& getIP() const {return ip;} void setState(State newState) {state = newState;} State getState() const {return state;} |