X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_spanningtree%2Fmain.h;h=eb17c4195fe8bc6b42823202d9ed891da5792ca5;hb=24fc55bbfd367bf2ef68230173ffe1cb58f744fa;hp=0d44169c7108a7f9631d65c53864cc3c62ad5c2f;hpb=164e9d9171850877161ae057764ff8b579bedd36;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_spanningtree/main.h b/src/modules/m_spanningtree/main.h index 0d44169c7..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, 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(); @@ -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,25 +97,21 @@ 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); - /** Handle remote MODULES - */ - ModResult HandleModules(const std::vector& parameters, User* user); - /** Ping all local servers */ void DoPingChecks(time_t curtime); /** Connect a server locally */ - void ConnectServer(Link* x, Autoconnect* y); + 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 */ @@ -158,10 +145,10 @@ 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(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); @@ -169,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); @@ -188,9 +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 &modeline, const std::vector &translate); void ProtoSendMetaData(void* opaque, Extensible* target, const std::string &extname, const std::string &extdata); - 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();