diff options
Diffstat (limited to 'include/ctables.h')
-rw-r--r-- | include/ctables.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/ctables.h b/include/ctables.h index 81b841e81..a69f5c86f 100644 --- a/include/ctables.h +++ b/include/ctables.h @@ -224,8 +224,14 @@ class CoreExport CommandBase : public ServiceProvider class CoreExport Command : public CommandBase { public: + /** If true, the command will not be forwarded by the linking module even if it comes via ENCAP. + * Can be used to forward commands before their effects. + */ + bool force_manual_route; + Command(Module* me, const std::string& cmd, unsigned int minpara = 0, unsigned int maxpara = 0) : CommandBase(me, cmd, minpara, maxpara) + , force_manual_route(false) { } |