summaryrefslogtreecommitdiff
path: root/src/commands/cmd_part.cpp
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2013-06-12 21:10:30 +0200
committerattilamolnar <attilamolnar@hush.com>2013-06-12 21:10:30 +0200
commit56d4680b8cf9621d7ef3e6635dc9ba4707963c8e (patch)
tree750a00c58ac27601741530839b62b26e84d5eaec /src/commands/cmd_part.cpp
parent967bce73791bd3dcfe3b5f342a4d6b3a33330bd0 (diff)
Implement GetRouting() in core commands that require it, remove ugly workaround from spanningtree RouteCommand()
Diffstat (limited to 'src/commands/cmd_part.cpp')
-rw-r--r--src/commands/cmd_part.cpp4
1 files changed, 4 insertions, 0 deletions
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<std::string>& parameters, User *user);
+ RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
+ {
+ return (IS_LOCAL(user) ? ROUTE_LOCALONLY : ROUTE_BROADCAST);
+ }
};
CmdResult CommandPart::Handle (const std::vector<std::string>& parameters, User *user)