summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/httpresponse.cpp
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-05-22 20:51:58 +0300
committerGitHub <noreply@github.com>2024-05-22 20:51:58 +0300
commit6cc7dd09d5e69cf57e6de7fb568a0ad2693f9c9a (patch)
treefab23811a5cedc1ebf01479c852ee92ff62b636c /indra/llcorehttp/httpresponse.cpp
parentef8f4819822288e044ea719feb6af7a1f4df4c4e (diff)
parent7bb5afc11ee5a6af78302a8d76a9a619e2baaab2 (diff)
Merge pull request #1545 from Ansariel/DRTVWR-600-maint-A
Merge main into DRTVWR-600-maint-a
Diffstat (limited to 'indra/llcorehttp/httpresponse.cpp')
-rw-r--r--indra/llcorehttp/httpresponse.cpp52
1 files changed, 26 insertions, 26 deletions
diff --git a/indra/llcorehttp/httpresponse.cpp b/indra/llcorehttp/httpresponse.cpp
index f5ad2ebd47..1436054c0b 100644
--- a/indra/llcorehttp/httpresponse.cpp
+++ b/indra/llcorehttp/httpresponse.cpp
@@ -1,6 +1,6 @@
/**
* @file httpresponse.cpp
- * @brief
+ * @brief
*
* $LicenseInfo:firstyear=2012&license=viewerlgpl$
* Second Life Viewer Source Code
@@ -34,41 +34,41 @@ namespace LLCore
HttpResponse::HttpResponse()
- : LLCoreInt::RefCounted(true),
- mReplyOffset(0U),
- mReplyLength(0U),
- mReplyFullLength(0U),
- mBufferArray(NULL),
- mHeaders(),
- mRetries(0U),
- m503Retries(0U),
+ : LLCoreInt::RefCounted(true),
+ mReplyOffset(0U),
+ mReplyLength(0U),
+ mReplyFullLength(0U),
+ mBufferArray(NULL),
+ mHeaders(),
+ mRetries(0U),
+ m503Retries(0U),
mRequestUrl()
{}
HttpResponse::~HttpResponse()
{
- setBody(NULL);
- //setHeaders();
+ setBody(NULL);
+ //setHeaders();
}
void HttpResponse::setBody(BufferArray * ba)
{
- if (mBufferArray == ba)
- return;
-
- if (mBufferArray)
- {
- mBufferArray->release();
- }
-
- if (ba)
- {
- ba->addRef();
- }
-
- mBufferArray = ba;
+ if (mBufferArray == ba)
+ return;
+
+ if (mBufferArray)
+ {
+ mBufferArray->release();
+ }
+
+ if (ba)
+ {
+ ba->addRef();
+ }
+
+ mBufferArray = ba;
}
@@ -79,7 +79,7 @@ void HttpResponse::setHeaders(HttpHeaders::ptr_t &headers)
size_t HttpResponse::getBodySize() const
{
- return (mBufferArray) ? mBufferArray->size() : 0;
+ return (mBufferArray) ? mBufferArray->size() : 0;
}
} // end namespace LLCore