diff options
Diffstat (limited to 'include/protocol.h')
-rw-r--r-- | include/protocol.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/protocol.h b/include/protocol.h index 7f987964f..03ede7ca8 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -44,8 +44,9 @@ class ProtocolInterface * @param encap This is a list of string parameters, the first of which must be a server ID or glob matching servernames. * The second must be a subcommand. All subsequent parameters are dependant on the subcommand. * ENCAP (should) be used instead of creating new protocol messages for easier third party application support. + * @return True if the message was sent out (target exists) */ - virtual void SendEncapsulatedData(parameterlist &encap) { } + virtual bool SendEncapsulatedData(const parameterlist &encap) { return false; } /** Send metadata for an object to other linked servers. * @param target The object to send metadata for. |