From 2192a9f58aae466a42d60279fb34ee3c5d2950a1 Mon Sep 17 00:00:00 2001 From: w00t Date: Sun, 13 Jan 2008 03:37:25 +0000 Subject: First UserManager overhaul: Move clone counts out of InspIRCd & User. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8705 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/inspircd.cpp | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) (limited to 'src/inspircd.cpp') diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 6a32e2fc1..e52aa8fc2 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -325,6 +325,7 @@ InspIRCd::InspIRCd(int argc, char** argv) this->Timers = new TimerManager(this); this->Parser = new CommandParser(this); this->XLines = new XLineManager(this); + this->Users = new UserManager(this); this->Config->argv = argv; this->Config->argc = argc; @@ -748,24 +749,6 @@ int InspIRCd::SetTimeDelta(int delta) return old; } -void InspIRCd::AddLocalClone(User* user) -{ - clonemap::iterator x = local_clones.find(user->GetIPString()); - if (x != local_clones.end()) - x->second++; - else - local_clones[user->GetIPString()] = 1; -} - -void InspIRCd::AddGlobalClone(User* user) -{ - clonemap::iterator y = global_clones.find(user->GetIPString()); - if (y != global_clones.end()) - y->second++; - else - global_clones[user->GetIPString()] = 1; -} - int InspIRCd::GetTimeDelta() { return time_delta; -- cgit v1.3.1-10-gc9f91