]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/main.h
Merge pull request #1147 from SaberUK/insp20+gcc6
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / main.h
index 4467b243fc4f89e909a47446ea809cc735e10c83..17adc928780a4f9f3aa04f01bd4686c5a2acfcbc 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>
@@ -43,7 +53,6 @@ class Autoconnect;
 class ModuleSpanningTree : public Module
 {
        SpanningTreeCommands* commands;
-       void RedoConfig(Module* mod);
 
  public:
        SpanningTreeUtilities* Utils;
@@ -54,6 +63,11 @@ class ModuleSpanningTree : public Module
         */
        bool loopCall;
 
+       /** If true OnUserPostNick() won't update the nick TS before sending the NICK,
+        * used when handling SVSNICK.
+        */
+       bool KeepNickTS;
+
        /** Constructor
         */
        ModuleSpanningTree();
@@ -75,14 +89,6 @@ class ModuleSpanningTree : public Module
         */
        void ShowMap(TreeServer* Current, User* user, int depth, int &line, char* names, int &maxnamew, char* stats);
 
-       /** 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);
@@ -91,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);
@@ -176,6 +178,7 @@ class ModuleSpanningTree : public Module
        void OnLoadModule(Module* mod);
        void OnUnloadModule(Module* mod);
        ModResult OnAcceptConnection(int newsock, ListenSocket* from, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* server);
+       void OnRequest(Request& request);
        CullResult cull();
        ~ModuleSpanningTree();
        Version GetVersion();