summaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/commands.h
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2016-03-30 12:32:02 +0200
committerAttila Molnar <attilamolnar@hush.com>2016-03-30 12:32:02 +0200
commit514a9edadf19d01ac80a9ef7b8b05054e7d4786b (patch)
tree281772c6831ff4fe9616588efdfd29de2508db7f /src/modules/m_spanningtree/commands.h
parent3c725be2833f77d7850dbb2c8cdc6be64d95c0ab (diff)
m_spanningtree Remove PUSH handler
Diffstat (limited to 'src/modules/m_spanningtree/commands.h')
-rw-r--r--src/modules/m_spanningtree/commands.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/modules/m_spanningtree/commands.h b/src/modules/m_spanningtree/commands.h
index 4810e9d4b..feecc7dd2 100644
--- a/src/modules/m_spanningtree/commands.h
+++ b/src/modules/m_spanningtree/commands.h
@@ -298,14 +298,6 @@ class CommandPong : public ServerOnlyServerCommand<CommandPong>
RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters) { return ROUTE_UNICAST(parameters[0]); }
};
-class CommandPush : public ServerCommand
-{
- public:
- CommandPush(Module* Creator) : ServerCommand(Creator, "PUSH", 2) { }
- CmdResult Handle(User* user, std::vector<std::string>& parameters);
- RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters) { return ROUTE_UNICAST(parameters[0]); }
-};
-
class CommandSave : public ServerCommand
{
public:
@@ -409,7 +401,6 @@ class SpanningTreeCommands
CommandNick nick;
CommandPing ping;
CommandPong pong;
- CommandPush push;
CommandSave save;
CommandServer server;
CommandSQuit squit;