X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_spanningtree%2Fmain.h;h=bef94a53bbcdca28fa79bf907f0b1336853983cb;hb=d736eba00b274c87662bd73a3acf8288135643d6;hp=cfdec9131f5974adb822c26ac36778b33ec4ed34;hpb=e2f4bf3a135e6b23fea21b2628c2c830de29cdec;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_spanningtree/main.h b/src/modules/m_spanningtree/main.h index cfdec9131..bef94a53b 100644 --- a/src/modules/m_spanningtree/main.h +++ b/src/modules/m_spanningtree/main.h @@ -1,116 +1,102 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * InspIRCd: (C) 2002-2008 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/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__ + +#pragma once #include "inspircd.h" -#include +#include "modules/dns.h" +#include "servercommand.h" +#include "commands.h" /** If you make a change which breaks the protocol, increment this. * If you completely change the protocol, completely change the number. * * IMPORTANT: If you make changes, document your changes here, without fail: - * http://www.inspircd.org/wiki/List_of_protocol_changes_between_versions + * http://wiki.inspircd.org/List_of_protocol_changes_between_versions * * Failure to document your protocol changes will result in a painfully * painful death by pain. You have been warned. */ -const long ProtocolVersion = 1200; +const long ProtocolVersion = 1205; +const long MinCompatProtocol = 1202; /** Forward declarations */ -class cmd_rconnect; -class cmd_rsquit; +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 { - int line; - int NumServers; - unsigned int max_local; - unsigned int max_global; - cmd_rconnect* command_rconnect; - cmd_rsquit* command_rsquit; - SpanningTreeUtilities* Utils; - - public: - CacheRefreshTimer *RefreshTimer; - - /** Constructor - */ - ModuleSpanningTree(InspIRCd* Me); - - /** Shows /LINKS - */ - void ShowLinks(TreeServer* Current, User* user, int hops); - - /** Counts local servers + /** Client to server commands, registered in the core */ - int CountLocalServs(); + CommandRConnect rconnect; + CommandRSQuit rsquit; + CommandMap map; - /** Counts local and remote servers + /** Server to server only commands, not registered in the core */ - int CountServs(); + SpanningTreeCommands* commands; - /** Handle LINKS command - */ - void HandleLinks(const char* const* parameters, int pcnt, User* user); + public: + dynamic_reference DNS; - /** Handle LUSERS command - */ - void HandleLusers(const char* const* parameters, int pcnt, User* user); + ServerCommandManager CmdManager; - /** Show MAP output to a user (recursive) + /** Set to true if inside a spanningtree call, to prevent sending + * xlines and other things back to their source */ - void ShowMap(TreeServer* Current, User* user, int depth, char matrix[128][128], float &totusers, float &totservers); + bool loopCall; - /** Handle remote MOTD + /** True if users are quitting due to a netsplit */ - int HandleMotd(const char* const* parameters, int pcnt, User* user); + bool SplitInProgress; - /** Handle remote ADMIN + /** Constructor */ - int HandleAdmin(const char* const* parameters, int pcnt, User* user); + ModuleSpanningTree(); + void init() CXX11_OVERRIDE; - /** Handle remote STATS + /** Shows /LINKS */ - int HandleStats(const char* const* parameters, int pcnt, User* user); + void ShowLinks(TreeServer* Current, User* user, int hops); - /** Handle MAP command + /** Handle LINKS command */ - void HandleMap(const char* const* parameters, int pcnt, User* user); + void HandleLinks(const std::vector& parameters, User* user); /** Handle SQUIT */ - int HandleSquit(const char* const* parameters, int pcnt, User* user); - - /** Handle TIME - */ - int HandleTime(const char* const* parameters, int pcnt, User* user); + ModResult HandleSquit(const std::vector& parameters, User* user); /** Handle remote WHOIS */ - int HandleRemoteWhois(const char* const* parameters, int pcnt, User* user); - - /** Handle remote MODULES - */ - int HandleModules(const char* const* parameters, int pcnt, User* user); + ModResult HandleRemoteWhois(const std::vector& parameters, User* user); /** Ping all local servers */ @@ -118,68 +104,70 @@ class ModuleSpanningTree : public Module /** 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 */ void AutoConnectServers(time_t curtime); + /** Check if any connecting servers should timeout + */ + void DoConnectTimeout(time_t curtime); + /** Handle remote VERSON */ - int HandleVersion(const char* const* parameters, int pcnt, User* user); + ModResult HandleVersion(const std::vector& parameters, User* user); /** Handle CONNECT */ - int HandleConnect(const char* const* parameters, int pcnt, User* user); + ModResult HandleConnect(const std::vector& parameters, User* user); /** Attempt to send a message to a user */ void RemoteMessage(User* user, const char* format, ...) CUSTOM_PRINTF(3, 4); - /** Returns oper-specific MAP information - */ - const std::string MapOperInfo(TreeServer* Current); - /** Display a time as a human readable string */ - std::string TimeToStr(time_t secs); + static std::string TimeToStr(time_t secs); /** ** *** MODULE EVENTS *** **/ - virtual int OnPreCommand(const std::string &command, const char* const* parameters, int pcnt, User *user, bool validated, const std::string &original_line); - virtual void OnPostCommand(const std::string &command, const char* const* parameters, int pcnt, User *user, CmdResult result, const std::string &original_line); - virtual void OnGetServerDescription(const std::string &servername,std::string &description); - virtual void OnUserInvite(User* source,User* dest,Channel* channel, time_t); - virtual void OnPostLocalTopicChange(User* user, Channel* chan, const std::string &topic); - virtual void OnWallops(User* user, const std::string &text); - virtual void OnUserNotice(User* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list); - virtual void OnUserMessage(User* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list); - virtual void OnBackgroundTimer(time_t curtime); - virtual void OnUserJoin(User* user, Channel* channel, bool sync, bool &silent); - virtual void OnChangeHost(User* user, const std::string &newhost); - virtual void OnChangeName(User* user, const std::string &gecos); - virtual void OnUserPart(User* user, Channel* channel, const std::string &partmessage, bool &silent); - virtual void OnPostConnect(User* user); - virtual void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message); - virtual void OnUserPostNick(User* user, const std::string &oldnick); - virtual void OnUserKick(User* source, User* user, Channel* chan, const std::string &reason, bool &silent); - virtual void OnRemoteKill(User* source, User* dest, const std::string &reason, const std::string &operreason); - virtual void OnRehash(User* user, const std::string ¶meter); - virtual void OnOper(User* user, const std::string &opertype); + ModResult OnPreCommand(std::string &command, std::vector& parameters, LocalUser *user, bool validated, const std::string &original_line) CXX11_OVERRIDE; + void OnPostCommand(Command*, const std::vector& parameters, LocalUser* user, CmdResult result, const std::string& original_line) CXX11_OVERRIDE; + void OnGetServerDescription(const std::string &servername,std::string &description) CXX11_OVERRIDE; + void OnUserConnect(LocalUser* source) CXX11_OVERRIDE; + void OnUserInvite(User* source,User* dest,Channel* channel, time_t) CXX11_OVERRIDE; + void OnPostTopicChange(User* user, Channel* chan, const std::string &topic) CXX11_OVERRIDE; + void OnUserMessage(User* user, void* dest, int target_type, const std::string& text, char status, const CUList& exempt_list, MessageType msgtype) CXX11_OVERRIDE; + void OnBackgroundTimer(time_t curtime) CXX11_OVERRIDE; + void OnUserJoin(Membership* memb, bool sync, bool created, CUList& excepts) CXX11_OVERRIDE; + void OnChangeHost(User* user, const std::string &newhost) CXX11_OVERRIDE; + void OnChangeName(User* user, const std::string &gecos) CXX11_OVERRIDE; + void OnChangeIdent(User* user, const std::string &ident) CXX11_OVERRIDE; + void OnUserPart(Membership* memb, std::string &partmessage, CUList& excepts) CXX11_OVERRIDE; + void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message) CXX11_OVERRIDE; + void OnUserPostNick(User* user, const std::string &oldnick) CXX11_OVERRIDE; + void OnUserKick(User* source, Membership* memb, const std::string &reason, CUList& excepts) CXX11_OVERRIDE; + void OnPreRehash(User* user, const std::string ¶meter) CXX11_OVERRIDE; + void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE; + void OnOper(User* user, const std::string &opertype) CXX11_OVERRIDE; void OnLine(User* source, const std::string &host, bool adding, char linetype, long duration, const std::string &reason); - virtual void OnAddLine(User *u, XLine *x); - virtual void OnDelLine(User *u, XLine *x); - virtual void OnMode(User* user, void* dest, int target_type, const std::string &text); - virtual int OnStats(char statschar, User* user, string_list &results); - virtual int OnSetAway(User* user, const std::string &awaymsg); - virtual void ProtoSendMode(void* opaque, int target_type, void* target, const std::string &modeline); - virtual void ProtoSendMetaData(void* opaque, int target_type, void* target, const std::string &extname, const std::string &extdata); - virtual void OnEvent(Event* event); - virtual ~ModuleSpanningTree(); - virtual Version GetVersion(); + void OnAddLine(User *u, XLine *x) CXX11_OVERRIDE; + void OnDelLine(User *u, XLine *x) CXX11_OVERRIDE; + ModResult OnStats(char statschar, User* user, string_list &results) CXX11_OVERRIDE; + ModResult OnSetAway(User* user, const std::string &awaymsg) CXX11_OVERRIDE; + void OnLoadModule(Module* mod) CXX11_OVERRIDE; + void OnUnloadModule(Module* mod) CXX11_OVERRIDE; + ModResult OnAcceptConnection(int newsock, ListenSocket* from, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* server) CXX11_OVERRIDE; + void On005Numeric(std::map& tokens) CXX11_OVERRIDE; + CullResult cull(); + ~ModuleSpanningTree(); + Version GetVersion() CXX11_OVERRIDE; void Prioritize(); }; - -#endif