summaryrefslogtreecommitdiff
path: root/include/server.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/server.h')
-rw-r--r--include/server.h24
1 files changed, 22 insertions, 2 deletions
diff --git a/include/server.h b/include/server.h
index d73c9673a..491754e13 100644
--- a/include/server.h
+++ b/include/server.h
@@ -22,6 +22,9 @@
class CoreExport Server : public classbase
{
protected:
+ /** The unique identifier for this server. */
+ const std::string id;
+
/** The name of this server
*/
const std::string name;
@@ -44,8 +47,25 @@ class CoreExport Server : public classbase
friend class ConfigReaderThread;
public:
- Server(const std::string& srvname, const std::string& srvdesc)
- : name(srvname), description(srvdesc), uline(false), silentuline(false) { }
+ Server(const std::string& srvid, const std::string& srvname, const std::string& srvdesc)
+ : id(srvid)
+ , name(srvname)
+ , description(srvdesc)
+ , uline(false)
+ , silentuline(false)
+ {
+ }
+
+ DEPRECATED_METHOD(Server(const std::string& srvname, const std::string& srvdesc))
+ : name(srvname)
+ , description(srvdesc)
+ , uline(false)
+ , silentuline(false)
+ {
+ }
+
+ /** Retrieves the unique identifier for this server (e.g. 36C). */
+ const std::string& GetId() const { return id; }
/**
* Returns the name of this server