From 56d4680b8cf9621d7ef3e6635dc9ba4707963c8e Mon Sep 17 00:00:00 2001 From: attilamolnar Date: Wed, 12 Jun 2013 21:10:30 +0200 Subject: Implement GetRouting() in core commands that require it, remove ugly workaround from spanningtree RouteCommand() --- src/commands/cmd_part.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/commands/cmd_part.cpp') diff --git a/src/commands/cmd_part.cpp b/src/commands/cmd_part.cpp index 9b8d1d717..adf9da727 100644 --- a/src/commands/cmd_part.cpp +++ b/src/commands/cmd_part.cpp @@ -38,6 +38,10 @@ class CommandPart : public Command * @return A value from CmdResult to indicate command success or failure. */ CmdResult Handle(const std::vector& parameters, User *user); + RouteDescriptor GetRouting(User* user, const std::vector& parameters) + { + return (IS_LOCAL(user) ? ROUTE_LOCALONLY : ROUTE_BROADCAST); + } }; CmdResult CommandPart::Handle (const std::vector& parameters, User *user) -- cgit v1.2.3