diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2011-10-05 11:25:19 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2011-10-05 11:25:19 -0400 |
commit | 30480b58db917e48090ae7b3c1427834875d9626 (patch) | |
tree | fd380b1be4e8e4066efa92c283b5a317551a76f9 /indra/llcommon/llevents.cpp | |
parent | d0e36ade5bb16e9e5a6aca9ee4f02fbe995cdfd8 (diff) | |
parent | ad9c28a2693f0e05f229697bb906216f99029bed (diff) |
Automated merge with http://hg.secondlife.com/viewer-development
Diffstat (limited to 'indra/llcommon/llevents.cpp')
-rw-r--r-- | indra/llcommon/llevents.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/indra/llcommon/llevents.cpp b/indra/llcommon/llevents.cpp index ff03506e84..db1ea4792b 100644 --- a/indra/llcommon/llevents.cpp +++ b/indra/llcommon/llevents.cpp @@ -591,6 +591,17 @@ void LLReqID::stamp(LLSD& response) const bool sendReply(const LLSD& reply, const LLSD& request, const std::string& replyKey) { + // If the original request has no value for replyKey, it's pointless to + // construct or send a reply event: on which LLEventPump should we send + // it? Allow that to be optional: if the caller wants to require replyKey, + // it can so specify when registering the operation method. + if (! request.has(replyKey)) + { + return false; + } + + // Here the request definitely contains replyKey; reasonable to proceed. + // Copy 'reply' to modify it. LLSD newreply(reply); // Get the ["reqid"] element from request |