X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_spanningtree%2Fmain.h;h=eb17c4195fe8bc6b42823202d9ed891da5792ca5;hb=24fc55bbfd367bf2ef68230173ffe1cb58f744fa;hp=02513fb2e6a941ceeec695ad72410b2e09afcbb2;hpb=d221de88276b9e33a108281a9cd0a58875032fc6;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_spanningtree/main.h b/src/modules/m_spanningtree/main.h index 02513fb2e..eb17c4195 100644 --- a/src/modules/m_spanningtree/main.h +++ b/src/modules/m_spanningtree/main.h @@ -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 + * Copyright (C) 2008 Thomas Stagner + * Copyright (C) 2007-2008 Craig Edwards + * Copyright (C) 2007 Robin Burchell + * Copyright (C) 2007 Dennis Friis * - * 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 . */ -#ifndef __ST_MAIN__ -#define __ST_MAIN__ + +#ifndef M_SPANNINGTREE_MAIN_H +#define M_SPANNINGTREE_MAIN_H #include "inspircd.h" #include @@ -31,8 +41,7 @@ const long MinCompatProtocol = 1201; /** Forward declarations */ -class CommandRConnect; -class CommandRSQuit; +class SpanningTreeCommands; class SpanningTreeUtilities; class CacheRefreshTimer; class TreeServer; @@ -43,33 +52,31 @@ class Autoconnect; */ class ModuleSpanningTree : public Module { - unsigned int max_local; - unsigned int max_global; - CommandRConnect* command_rconnect; - CommandRSQuit* command_rsquit; - 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 */ void ShowLinks(TreeServer* Current, User* user, int hops); - /** Counts local servers - */ - int CountLocalServs(); - /** Counts local and remote servers */ int CountServs(); @@ -78,26 +85,10 @@ class ModuleSpanningTree : public Module */ void HandleLinks(const std::vector& parameters, User* user); - /** Handle LUSERS command - */ - void HandleLusers(const std::vector& 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& parameters, User* user); - - /** Handle remote ADMIN - */ - ModResult HandleAdmin(const std::vector& parameters, User* user); - - /** Handle remote STATS - */ - ModResult HandleStats(const std::vector& parameters, User* user); - /** Handle MAP command */ bool HandleMap(const std::vector& parameters, User* user); @@ -106,10 +97,6 @@ class ModuleSpanningTree : public Module */ ModResult HandleSquit(const std::vector& parameters, User* user); - /** Handle TIME - */ - ModResult HandleTime(const std::vector& parameters, User* user); - /** Handle remote WHOIS */ ModResult HandleRemoteWhois(const std::vector& parameters, User* user); @@ -158,8 +145,8 @@ class ModuleSpanningTree : public Module ** *** MODULE EVENTS *** **/ - ModResult OnPreCommand(std::string &command, std::vector& parameters, User *user, bool validated, const std::string &original_line); - void OnPostCommand(const std::string &command, const std::vector& parameters, User *user, CmdResult result, const std::string &original_line); + ModResult OnPreCommand(std::string &command, std::vector& parameters, LocalUser *user, bool validated, const std::string &original_line); + void OnPostCommand(const std::string &command, const std::vector& 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);