]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/stats.cpp
Replace std::deque with std::vector in spanningtree and related modules
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / stats.cpp
index 9ac255c37635cbf5079327384c15ad8179fc84dd..810b6dc7723d301f949f8e926d612991840d6089 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
 #include "commands/cmd_whois.h"
 #include "commands/cmd_stats.h"
 #include "socket.h"
-#include "wildcard.h"
 #include "xline.h"
-#include "transport.h"
+#include "../transport.h"
 #include "socketengine.h"
 
-#include "m_spanningtree/main.h"
-#include "m_spanningtree/utils.h"
-#include "m_spanningtree/treeserver.h"
-#include "m_spanningtree/link.h"
-#include "m_spanningtree/treesocket.h"
+#include "main.h"
+#include "utils.h"
+#include "treeserver.h"
+#include "link.h"
+#include "treesocket.h"
 
 /* $ModDep: m_spanningtree/main.h m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/link.h m_spanningtree/treesocket.h */
 
-bool TreeSocket::Stats(const std::string &prefix, std::deque<std::string> &params)
+bool TreeSocket::Stats(const std::string &prefix, parameterlist &params)
 {
        /* Get the reply to a STATS query if it matches this servername,
         * and send it back as a load of PUSH queries
         */
        if (params.size() > 1)
        {
-               if (this->Instance->MatchText(this->Instance->Config->ServerName, params[1]))
+               if (InspIRCd::Match(this->ServerInstance->Config->ServerName, params[1]))
                {
                        /* It's for our server */
                        string_list results;
-                       User* source = this->Instance->FindNick(prefix);
+                       User* source = this->ServerInstance->FindNick(prefix);
                        if (source)
                        {
-                               std::deque<std::string> par;
+                               parameterlist par;
                                par.push_back(prefix);
                                par.push_back("");
-                               DoStats(this->Instance, *(params[0].c_str()), source, results);
+                               DoStats(this->ServerInstance, *(params[0].c_str()), source, results);
                                for (size_t i = 0; i < results.size(); i++)
                                {
                                        par[1] = "::" + results[i];
-                                       Utils->DoOneToOne(this->Instance->Config->GetSID(), "PUSH",par, source->server);
+                                       Utils->DoOneToOne(this->ServerInstance->Config->GetSID(), "PUSH",par, source->server);
                                }
                        }
                }
                else
                {
                        /* Pass it on */
-                       User* source = this->Instance->FindNick(prefix);
+                       User* source = this->ServerInstance->FindNick(prefix);
                        if (source)
                                Utils->DoOneToOne(source->uuid, "STATS", params, params[1]);
                }