]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/main.h
Document ModuleSpanningTree::RemoteMessage. Maybe useful for other stuff.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / main.h
index d11d2b278752919c2bb2d61ddf6f69001e9c60d3..dd4f70f0f5834a04bfd8b33f8ea6f889fa1daf45 100644 (file)
@@ -16,6 +16,7 @@
 
 #include "inspircd.h"
 #include "modules.h"
+#include <stdarg.h>
 
 /** If you make a change which breaks the protocol, increment this.
  * If you  completely change the protocol, completely change the number.
@@ -31,6 +32,7 @@ const long ProtocolVersion = 1105;
 /** Forward declarations
  */
 class cmd_rconnect;
+class cmd_rsquit;
 class SpanningTreeUtilities;
 class TimeSyncTimer;
 class CacheRefreshTimer;
@@ -46,6 +48,7 @@ class ModuleSpanningTree : public Module
        unsigned int max_local;
        unsigned int max_global;
        cmd_rconnect* command_rconnect;
+       cmd_rsquit* command_rsquit;
        SpanningTreeUtilities* Utils;
 
  public:
@@ -81,7 +84,7 @@ class ModuleSpanningTree : public Module
 
        /** Show MAP output to a user (recursive)
         */
-       void ShowMap(TreeServer* Current, userrec* user, int depth, char matrix[128][80], float &totusers, float &totservers);
+       void ShowMap(TreeServer* Current, userrec* user, int depth, char matrix[128][128], float &totusers, float &totservers);
 
        /** Handle remote MOTD
         */
@@ -139,10 +142,18 @@ class ModuleSpanningTree : public Module
         */
        void BroadcastTimeSync();
 
+       /** Attempt to send a message to a user
+        */
+       void RemoteMessage(userrec* user, const char* format, ...);
+
        /** 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);
+
        /**
         ** *** MODULE EVENTS ***
         **/
@@ -156,15 +167,15 @@ class ModuleSpanningTree : public Module
        virtual void OnUserNotice(userrec* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list);
        virtual void OnUserMessage(userrec* 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(userrec* user, chanrec* channel);
+       virtual void OnUserJoin(userrec* user, chanrec* channel, bool &silent);
        virtual void OnChangeHost(userrec* user, const std::string &newhost);
        virtual void OnChangeName(userrec* user, const std::string &gecos);
-       virtual void OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage);
+       virtual void OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage, bool &silent);
        virtual void OnUserConnect(userrec* user);
        virtual void OnUserQuit(userrec* user, const std::string &reason, const std::string &oper_message);
        virtual void OnUserPostNick(userrec* user, const std::string &oldnick);
-       virtual void OnUserKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason);
-       virtual void OnRemoteKill(userrec* source, userrec* dest, const std::string &reason);
+       virtual void OnUserKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason, bool &silent);
+       virtual void OnRemoteKill(userrec* source, userrec* dest, const std::string &reason, const std::string &operreason);
        virtual void OnRehash(userrec* user, const std::string &parameter);
        virtual void OnOper(userrec* user, const std::string &opertype);
        void OnLine(userrec* source, const std::string &host, bool adding, char linetype, long duration, const std::string &reason);