]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/opertype.cpp
Move destruction logic for User and Spanningtree into cull()
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / opertype.cpp
index c76425fdac786be799baadc5647d4eb0e8a29dd5..a1ad88007bcb845a302eaa3a485c12e8ba474fc7 100644 (file)
@@ -3,7 +3,7 @@
  *       +------------------------------------+
  *
  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
@@ -14,9 +14,9 @@
 #include "inspircd.h"
 #include "xline.h"
 
-#include "m_spanningtree/treesocket.h"
-#include "m_spanningtree/treeserver.h"
-#include "m_spanningtree/utils.h"
+#include "treesocket.h"
+#include "treeserver.h"
+#include "utils.h"
 
 /* $ModDep: m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/treesocket.h */
 
 /** Because the core won't let users or even SERVERS set +o,
  * we use the OPERTYPE command to do this.
  */
-bool TreeSocket::OperType(const std::string &prefix, std::deque<std::string> &params, const std::string &up)
+bool TreeSocket::OperType(const std::string &prefix, parameterlist &params)
 {
        if (params.size() != 1)
                return true;
        std::string opertype = params[0];
-       User* u = this->ServerInstance->FindNick(prefix);
+       User* u = ServerInstance->FindNick(prefix);
        if (u)
        {
-               if (!u->IsModeSet('o'))
-                       this->ServerInstance->Users->all_opers.push_back(u);
+               if (!IS_OPER(u))
+                       ServerInstance->Users->all_opers.push_back(u);
                u->modes[UM_OPERATOR] = 1;
                u->oper.assign(opertype, 0, 512);
                Utils->DoOneToAllButSender(u->uuid, "OPERTYPE", params, u->server);
 
                TreeServer* remoteserver = Utils->FindServer(u->server);
-               TreeServer* uplink = Utils->FindServer(up);
                bool dosend = true;
 
-               if (this->Utils->quiet_bursts && uplink)
+               if (this->Utils->quiet_bursts)
                {
                        /*
                         * If quiet bursts are enabled, and server is bursting or silent uline (i.e. services),
                         * then do nothing. -- w00t
                         */
                        if (
-                               remoteserver->bursting || uplink->bursting || 
-                               this->ServerInstance->SilentULine(this->ServerInstance->FindServerNamePtr(u->server))
+                               remoteserver->bursting ||
+                               ServerInstance->SilentULine(ServerInstance->FindServerNamePtr(u->server))
                           )
                        {
                                dosend = false;
@@ -58,7 +57,7 @@ bool TreeSocket::OperType(const std::string &prefix, std::deque<std::string> &pa
                }
 
                if (dosend)
-                       this->ServerInstance->SNO->WriteToSnoMask('O',"From %s: User %s (%s@%s) is now an IRC operator of type %s",u->server, u->nick.c_str(),u->ident.c_str(), u->host.c_str(), irc::Spacify(opertype.c_str()));
+                       ServerInstance->SNO->WriteToSnoMask('O',"From %s: User %s (%s@%s) is now an IRC operator of type %s",u->server, u->nick.c_str(),u->ident.c_str(), u->host.c_str(), irc::Spacify(opertype.c_str()));
        }
        return true;
 }