summaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/main.h
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2010-01-02 21:05:56 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2010-01-02 21:05:56 +0000
commite2289d4cf4f9a9c587c1956c089bb3a32a48b54d (patch)
tree5cccf646ce53a04204ea98cfca87db0dec436092 /src/modules/m_spanningtree/main.h
parent9451b779d7a513c87f48db40e14d245b7f62c844 (diff)
Remove special-case handling of SVSNICK, SVSJOIN, SVSPART; enables intelligent routing
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12238 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree/main.h')
-rw-r--r--src/modules/m_spanningtree/main.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree/main.h b/src/modules/m_spanningtree/main.h
index 02513fb2e..b152757b9 100644
--- a/src/modules/m_spanningtree/main.h
+++ b/src/modules/m_spanningtree/main.h
@@ -33,6 +33,9 @@ const long MinCompatProtocol = 1201;
*/
class CommandRConnect;
class CommandRSQuit;
+class CommandSVSJoin;
+class CommandSVSPart;
+class CommandSVSNick;
class SpanningTreeUtilities;
class CacheRefreshTimer;
class TreeServer;
@@ -47,6 +50,9 @@ class ModuleSpanningTree : public Module
unsigned int max_global;
CommandRConnect* command_rconnect;
CommandRSQuit* command_rsquit;
+ CommandSVSJoin* command_svsjoin;
+ CommandSVSPart* command_svspart;
+ CommandSVSNick* command_svsnick;
SpanningTreeUtilities* Utils;
void RedoConfig(Module* mod);