summaryrefslogtreecommitdiff
path: root/indra/llmessage/llcorehttputil.h
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2015-11-03 14:22:42 -0800
committerRider Linden <rider@lindenlab.com>2015-11-03 14:22:42 -0800
commitd64ddb54caacc3d07448d4bf4a90edd3d148cc4f (patch)
tree3b9957fd18aeda5daf77009922a744b344b6ec4e /indra/llmessage/llcorehttputil.h
parentac0eee2b51f35f4615bc0948ae0eba0679938ac5 (diff)
MAINT-5820: Add a success/failure result to HTTP body parse method and react to that rather than an "undefined" LLSD
Diffstat (limited to 'indra/llmessage/llcorehttputil.h')
-rw-r--r--indra/llmessage/llcorehttputil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/llcorehttputil.h b/indra/llmessage/llcorehttputil.h
index 0ec17cda07..d21f5ff45c 100644
--- a/indra/llmessage/llcorehttputil.h
+++ b/indra/llmessage/llcorehttputil.h
@@ -282,7 +282,7 @@ public:
protected:
/// this method may modify the status value
virtual LLSD handleSuccess(LLCore::HttpResponse * response, LLCore::HttpStatus &status) = 0;
- virtual LLSD parseBody(LLCore::HttpResponse *response) = 0;
+ virtual LLSD parseBody(LLCore::HttpResponse *response, bool &success) = 0;
private:
void buildStatusEntry(LLCore::HttpResponse *response, LLCore::HttpStatus status, LLSD &result);