]> 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 1d3ec9d3972d2549c0432ddb4ad0c36c1f3de503..eb17c4195fe8bc6b42823202d9ed891da5792ca5 100644 (file)
@@ -1,18 +1,28 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2009 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,44 +41,42 @@ const long MinCompatProtocol = 1201;
 
 /** Forward declarations
  */
-class CommandRConnect;
-class CommandRSQuit;
+class SpanningTreeCommands;
 class SpanningTreeUtilities;
 class CacheRefreshTimer;
 class TreeServer;
 class Link;
+class Autoconnect;
 
 /** This is the main class for the spanningtree module
  */
 class ModuleSpanningTree : public Module
 {
-       unsigned int max_local;
-       unsigned int max_global;
-       CommandRConnect* command_rconnect;
-       CommandRSQuit* command_rsquit;
-       SpanningTreeUtilities* Utils;
-
-       void RedoConfig(Module* mod, const std::string &name);
+       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(InspIRCd* Me);
+       ModuleSpanningTree();
+       void init();
 
        /** Shows /LINKS
         */
        void ShowLinks(TreeServer* Current, User* user, int hops);
 
-       /** Counts local servers
-        */
-       int CountLocalServs();
-
        /** Counts local and remote servers
         */
        int CountServs();
@@ -77,26 +85,10 @@ class ModuleSpanningTree : public Module
         */
        void HandleLinks(const std::vector<std::string>& parameters, User* user);
 
-       /** Handle LUSERS command
-        */
-       void HandleLusers(const std::vector<std::string>& parameters, User* user);
-
        /** Show MAP output to a user (recursive)
         */
        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);
@@ -105,25 +97,21 @@ 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);
 
-       /** Handle remote MODULES
-        */
-       ModResult HandleModules(const std::vector<std::string>& parameters, User* user);
-
        /** Ping all local servers
         */
        void DoPingChecks(time_t curtime);
 
        /** Connect a server locally
         */
-       void ConnectServer(Link* x);
+       void ConnectServer(Link* x, Autoconnect* y = NULL);
+
+       /** Connect the next autoconnect server
+        */
+       void ConnectServer(Autoconnect* y, bool on_timer);
 
        /** Check if any servers are due to be autoconnected
         */
@@ -157,10 +145,10 @@ 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(User* source);
+       void OnUserConnect(LocalUser* source);
        void OnUserInvite(User* source,User* dest,Channel* channel, time_t);
        void OnPostTopicChange(User* user, Channel* chan, const std::string &topic);
        void OnWallops(User* user, const std::string &text);
@@ -168,7 +156,7 @@ class ModuleSpanningTree : public Module
        void OnUserMessage(User* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list);
        void OnBackgroundTimer(time_t curtime);
        void OnUserJoin(Membership* memb, bool sync, bool created, CUList& excepts);
-       ModResult OnChangeLocalUserHost(User* user, const std::string &newhost);
+       void OnChangeHost(User* user, const std::string &newhost);
        void OnChangeName(User* user, const std::string &gecos);
        void OnChangeIdent(User* user, const std::string &ident);
        void OnUserPart(Membership* memb, std::string &partmessage, CUList& excepts);
@@ -187,10 +175,10 @@ class ModuleSpanningTree : public Module
        ModResult OnSetAway(User* user, const std::string &awaymsg);
        void ProtoSendMode(void* opaque, TargetTypeFlags target_type, void* target, const std::vector<std::string> &modeline, const std::vector<TranslateType> &translate);
        void ProtoSendMetaData(void* opaque, Extensible* target, const std::string &extname, const std::string &extdata);
-       std::string ProtoTranslate(Extensible* item);
-       void OnEvent(Event* event);
-       void OnLoadModule(Module* mod,const std::string &name);
-       void OnUnloadModule(Module* mod,const std::string &name);
+       void OnLoadModule(Module* mod);
+       void OnUnloadModule(Module* mod);
+       ModResult OnAcceptConnection(int newsock, ListenSocket* from, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* server);
+       CullResult cull();
        ~ModuleSpanningTree();
        Version GetVersion();
        void Prioritize();