summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-14 15:28:16 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-14 15:28:16 +0000
commitb06846c089f66880bdd00834df95920d02b34800 (patch)
tree3c0d65ae9de79730b6827c258a0f40f7b04a0d55 /src
parentbb2daddfaac3ea91b575d3766aa020d6937f4233 (diff)
Tidyup
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4389 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_spanningtree.cpp41
1 files changed, 18 insertions, 23 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index c632fa540..23e7f1b19 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -167,8 +167,6 @@ class TreeServer : public classbase
TreeSocket* Socket; /* For directly connected servers this points at the socket object */
time_t NextPing; /* After this time, the server should be PINGed*/
bool LastPingWasGood; /* True if the server responded to the last PING with a PONG */
- std::map<userrec*,userrec*> Users; /* Users on this server */
- bool DontModifyHash; /* When the server is splitting, this is set to true so we dont bash our own iterator to death */
public:
@@ -183,7 +181,6 @@ class TreeServer : public classbase
VersionString = "";
UserCount = OperCount = 0;
VersionString = Srv->GetVersion();
- DontModifyHash = false;
}
/* We use this constructor only to create the 'root' item, TreeRoot, which
@@ -198,7 +195,6 @@ class TreeServer : public classbase
VersionString = Srv->GetVersion();
Route = NULL;
Socket = NULL; /* Fix by brain */
- DontModifyHash = false;
AddHashEntry();
}
@@ -210,7 +206,6 @@ class TreeServer : public classbase
{
VersionString = "";
UserCount = OperCount = 0;
- DontModifyHash = false;
this->SetNextPingTime(time(NULL) + 120);
this->SetPingFlag();
@@ -270,24 +265,24 @@ class TreeServer : public classbase
int QuitUsers(const std::string &reason)
{
- log(DEBUG,"Removing all users from server %s",this->ServerName.c_str());
- const char* reason_s = reason.c_str();
- std::vector<userrec*> time_to_die;
- for (user_hash::iterator n = clientlist.begin(); n != clientlist.end(); n++)
- {
- if (!strcmp(n->second->server, this->ServerName.c_str()))
- {
- time_to_die.push_back(n->second);
- }
- }
- for (std::vector<userrec*>::iterator n = time_to_die.begin(); n != time_to_die.end(); n++)
- {
- userrec* a = (userrec*)*n;
- log(DEBUG,"Kill %s fd=%d",a->nick,a->fd);
- if (!IS_LOCAL(a))
- kill_link(a,reason_s);
- }
- return time_to_die.size();
+ log(DEBUG,"Removing all users from server %s",this->ServerName.c_str());
+ const char* reason_s = reason.c_str();
+ std::vector<userrec*> time_to_die;
+ for (user_hash::iterator n = clientlist.begin(); n != clientlist.end(); n++)
+ {
+ if (!strcmp(n->second->server, this->ServerName.c_str()))
+ {
+ time_to_die.push_back(n->second);
+ }
+ }
+ for (std::vector<userrec*>::iterator n = time_to_die.begin(); n != time_to_die.end(); n++)
+ {
+ userrec* a = (userrec*)*n;
+ log(DEBUG,"Kill %s fd=%d",a->nick,a->fd);
+ if (!IS_LOCAL(a))
+ kill_link(a,reason_s);
+ }
+ return time_to_die.size();
}
/* This method is used to add the structure to the