summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/httpresponse.cpp
diff options
context:
space:
mode:
authorMonty Brandenberg <monty@lindenlab.com>2012-06-19 17:12:20 -0400
committerMonty Brandenberg <monty@lindenlab.com>2012-06-19 17:12:20 -0400
commit6b4fe9fadc2301eb13a2854457b67fbebe045b08 (patch)
tree81b2b25ae98d1d0d0df14ae3f1ba86ec9cfdc8bb /indra/llcorehttp/httpresponse.cpp
parenta50944e078b98435685f04eda0ba93e95d4c61f2 (diff)
When a Content-Range header is received, make available the full triplet of <offset, length, fulllength>.
Diffstat (limited to 'indra/llcorehttp/httpresponse.cpp')
-rw-r--r--indra/llcorehttp/httpresponse.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llcorehttp/httpresponse.cpp b/indra/llcorehttp/httpresponse.cpp
index 3dcdadb337..a552e48a1b 100644
--- a/indra/llcorehttp/httpresponse.cpp
+++ b/indra/llcorehttp/httpresponse.cpp
@@ -37,6 +37,7 @@ HttpResponse::HttpResponse()
: LLCoreInt::RefCounted(true),
mReplyOffset(0U),
mReplyLength(0U),
+ mReplyFullLength(0U),
mBufferArray(NULL),
mHeaders(NULL)
{}