diff options
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_spanningtree/treeserver.cpp | 12 | ||||
-rw-r--r-- | src/modules/m_spanningtree/treeserver.h | 5 |
2 files changed, 14 insertions, 3 deletions
diff --git a/src/modules/m_spanningtree/treeserver.cpp b/src/modules/m_spanningtree/treeserver.cpp index 1d29bd3c2..4204c2224 100644 --- a/src/modules/m_spanningtree/treeserver.cpp +++ b/src/modules/m_spanningtree/treeserver.cpp @@ -36,7 +36,7 @@ TreeServer::TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance, const st VersionString.clear(); UserCount = OperCount = 0; rtt = LastPing = 0; - Hidden = false; + Hidden = DupError = false; VersionString = ServerInstance->GetVersionString(); SetID(id); } @@ -56,7 +56,7 @@ TreeServer::TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance, std::str Route = NULL; Socket = NULL; /* Fix by brain */ rtt = LastPing = 0; - Hidden = false; + Hidden = DupError = false; AddHashEntry(); SetID(id); } @@ -72,6 +72,7 @@ TreeServer::TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance, std::str UserCount = OperCount = 0; this->SetNextPingTime(time(NULL) + Utils->PingFreq); this->SetPingFlag(); + DupError = false; rtt = LastPing = 0; /* find the 'route' for this server (e.g. the one directly connected * to the local server, which we can use to reach it) @@ -141,7 +142,12 @@ void TreeServer::SetID(const std::string &id) if (iter == Utils->sidlist.end()) Utils->sidlist[sid] = this; else - throw CoreException("Server ID '"+id+"' already exists!"); + DupError = true; +} + +bool TreeServer::DuplicateID() +{ + return DupError; } int TreeServer::QuitUsers(const std::string &reason) diff --git a/src/modules/m_spanningtree/treeserver.h b/src/modules/m_spanningtree/treeserver.h index 2a96012e3..d465722aa 100644 --- a/src/modules/m_spanningtree/treeserver.h +++ b/src/modules/m_spanningtree/treeserver.h @@ -44,6 +44,7 @@ class TreeServer : public classbase bool LastPingWasGood; /* True if the server responded to the last PING with a PONG */ SpanningTreeUtilities* Utils; /* Utility class */ std::string sid; /* Server ID */ + bool DupError; /* True if the server ID is duplicated (!) */ /** Set server ID * @param id Server ID @@ -192,6 +193,10 @@ class TreeServer : public classbase */ std::string& GetID(); + /** True on duplicate server ID (server not usable) + */ + bool DuplicateID(); + /** Destructor */ ~TreeServer(); |