]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/main.h
m_spanningtree Fix nick TS desync on SVSNICK
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / main.h
index a47b3762232ad3937540b7e0c040b1501b1d096b..eb17c4195fe8bc6b42823202d9ed891da5792ca5 100644 (file)
@@ -1,18 +1,28 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
- * See: http://wiki.inspircd.org/Credits
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
+ *   Copyright (C) 2007-2008 Craig Edwards <craigedwards@brainbox.cc>
+ *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
  *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
  *
- * ---------------------------------------------------
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef __ST_MAIN__
-#define __ST_MAIN__
+
+#ifndef M_SPANNINGTREE_MAIN_H
+#define M_SPANNINGTREE_MAIN_H
 
 #include "inspircd.h"
 #include <stdarg.h>
@@ -31,11 +41,7 @@ const long MinCompatProtocol = 1201;
 
 /** Forward declarations
  */
-class CommandRConnect;
-class CommandRSQuit;
-class CommandSVSJoin;
-class CommandSVSPart;
-class CommandSVSNick;
+class SpanningTreeCommands;
 class SpanningTreeUtilities;
 class CacheRefreshTimer;
 class TreeServer;
@@ -46,25 +52,26 @@ class Autoconnect;
  */
 class ModuleSpanningTree : public Module
 {
-       CommandRConnect* command_rconnect;
-       CommandRSQuit* command_rsquit;
-       CommandSVSJoin* command_svsjoin;
-       CommandSVSPart* command_svspart;
-       CommandSVSNick* command_svsnick;
-       SpanningTreeUtilities* Utils;
-
-       void RedoConfig(Module* mod);
+       SpanningTreeCommands* commands;
 
  public:
+       SpanningTreeUtilities* Utils;
+
        CacheRefreshTimer *RefreshTimer;
        /** Set to true if inside a spanningtree call, to prevent sending
         * xlines and other things back to their source
         */
        bool loopCall;
 
+       /** If true OnUserPostNick() won't update the nick TS before sending the NICK,
+        * used when handling SVSNICK.
+        */
+       bool KeepNickTS;
+
        /** Constructor
         */
        ModuleSpanningTree();
+       void init();
 
        /** Shows /LINKS
         */
@@ -82,18 +89,6 @@ class ModuleSpanningTree : public Module
         */
        void ShowMap(TreeServer* Current, User* user, int depth, int &line, char* names, int &maxnamew, char* stats);
 
-       /** Handle remote MOTD
-        */
-       ModResult HandleMotd(const std::vector<std::string>& parameters, User* user);
-
-       /** Handle remote ADMIN
-        */
-       ModResult HandleAdmin(const std::vector<std::string>& parameters, User* user);
-
-       /** Handle remote STATS
-        */
-       ModResult HandleStats(const std::vector<std::string>& parameters, User* user);
-
        /** Handle MAP command
         */
        bool HandleMap(const std::vector<std::string>& parameters, User* user);
@@ -102,10 +97,6 @@ class ModuleSpanningTree : public Module
         */
        ModResult HandleSquit(const std::vector<std::string>& parameters, User* user);
 
-       /** Handle TIME
-        */
-       ModResult HandleTime(const std::vector<std::string>& parameters, User* user);
-
        /** Handle remote WHOIS
         */
        ModResult HandleRemoteWhois(const std::vector<std::string>& parameters, User* user);
@@ -154,8 +145,8 @@ class ModuleSpanningTree : public Module
         ** *** MODULE EVENTS ***
         **/
 
-       ModResult OnPreCommand(std::string &command, std::vector<std::string>& parameters, User *user, bool validated, const std::string &original_line);
-       void OnPostCommand(const std::string &command, const std::vector<std::string>& parameters, User *user, CmdResult result, const std::string &original_line);
+       ModResult OnPreCommand(std::string &command, std::vector<std::string>& parameters, LocalUser *user, bool validated, const std::string &original_line);
+       void OnPostCommand(const std::string &command, const std::vector<std::string>& parameters, LocalUser *user, CmdResult result, const std::string &original_line);
        void OnGetServerDescription(const std::string &servername,std::string &description);
        void OnUserConnect(LocalUser* source);
        void OnUserInvite(User* source,User* dest,Channel* channel, time_t);