summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/httpheaders.cpp
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-04-29 07:43:28 +0300
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-04-29 07:56:09 +0300
commit1b68f71348ecf3983b76b40d7940da8377f049b7 (patch)
tree2974eddaef130a067c26033d60a59fc790365b3d /indra/llcorehttp/httpheaders.cpp
parentaf4ea94efc1999f3b19fd8d643d0331f0b77e265 (diff)
#824 Process source files in bulk: replace tabs with spaces, convert CRLF to LF, and trim trailing whitespaces as needed
Diffstat (limited to 'indra/llcorehttp/httpheaders.cpp')
-rw-r--r--indra/llcorehttp/httpheaders.cpp116
1 files changed, 58 insertions, 58 deletions
diff --git a/indra/llcorehttp/httpheaders.cpp b/indra/llcorehttp/httpheaders.cpp
index f586191a7c..6f1d0db370 100644
--- a/indra/llcorehttp/httpheaders.cpp
+++ b/indra/llcorehttp/httpheaders.cpp
@@ -44,61 +44,61 @@ HttpHeaders::~HttpHeaders()
void
HttpHeaders::clear()
{
- mHeaders.clear();
+ mHeaders.clear();
}
void HttpHeaders::append(const std::string & name, const std::string & value)
{
- mHeaders.push_back(value_type(name, value));
+ mHeaders.push_back(value_type(name, value));
}
void HttpHeaders::append(const char * name, const char * value)
{
- mHeaders.push_back(value_type(name, value));
+ mHeaders.push_back(value_type(name, value));
}
void HttpHeaders::appendNormal(const char * header, size_t size)
{
- std::string name;
- std::string value;
-
- int col_pos(0);
- for (; col_pos < size; ++col_pos)
- {
- if (':' == header[col_pos])
- break;
- }
-
- if (col_pos < size)
- {
- // Looks like a header, split it and normalize.
- // Name is everything before the colon, may be zero-length.
- name.assign(header, col_pos);
-
- // Value is everything after the colon, may also be zero-length.
- const size_t val_len(size - col_pos - 1);
- if (val_len)
- {
- value.assign(header + col_pos + 1, val_len);
- }
-
- // Clean the strings
- LLStringUtil::toLower(name);
- LLStringUtil::trim(name);
- LLStringUtil::trimHead(value);
- }
- else
- {
- // Uncertain what this is, we'll pack it as
- // a name without a value. Won't clean as we don't
- // know what it is...
- name.assign(header, size);
- }
-
- mHeaders.push_back(value_type(name, value));
+ std::string name;
+ std::string value;
+
+ int col_pos(0);
+ for (; col_pos < size; ++col_pos)
+ {
+ if (':' == header[col_pos])
+ break;
+ }
+
+ if (col_pos < size)
+ {
+ // Looks like a header, split it and normalize.
+ // Name is everything before the colon, may be zero-length.
+ name.assign(header, col_pos);
+
+ // Value is everything after the colon, may also be zero-length.
+ const size_t val_len(size - col_pos - 1);
+ if (val_len)
+ {
+ value.assign(header + col_pos + 1, val_len);
+ }
+
+ // Clean the strings
+ LLStringUtil::toLower(name);
+ LLStringUtil::trim(name);
+ LLStringUtil::trimHead(value);
+ }
+ else
+ {
+ // Uncertain what this is, we'll pack it as
+ // a name without a value. Won't clean as we don't
+ // know what it is...
+ name.assign(header, size);
+ }
+
+ mHeaders.push_back(value_type(name, value));
}
@@ -106,15 +106,15 @@ void HttpHeaders::appendNormal(const char * header, size_t size)
// std::map for this in the past.
const std::string * HttpHeaders::find(const std::string &name) const
{
- const_reverse_iterator iend(rend());
- for (const_reverse_iterator iter(rbegin()); iend != iter; ++iter)
- {
- if ((*iter).first == name)
- {
- return &(*iter).second;
- }
- }
- return NULL;
+ const_reverse_iterator iend(rend());
+ for (const_reverse_iterator iter(rbegin()); iend != iter; ++iter)
+ {
+ if ((*iter).first == name)
+ {
+ return &(*iter).second;
+ }
+ }
+ return NULL;
}
void HttpHeaders::remove(const char *name)
@@ -139,50 +139,50 @@ void HttpHeaders::remove(const std::string &name)
// Standard Iterators
HttpHeaders::iterator HttpHeaders::begin()
{
- return mHeaders.begin();
+ return mHeaders.begin();
}
HttpHeaders::const_iterator HttpHeaders::begin() const
{
- return mHeaders.begin();
+ return mHeaders.begin();
}
HttpHeaders::iterator HttpHeaders::end()
{
- return mHeaders.end();
+ return mHeaders.end();
}
HttpHeaders::const_iterator HttpHeaders::end() const
{
- return mHeaders.end();
+ return mHeaders.end();
}
// Standard Reverse Iterators
HttpHeaders::reverse_iterator HttpHeaders::rbegin()
{
- return mHeaders.rbegin();
+ return mHeaders.rbegin();
}
HttpHeaders::const_reverse_iterator HttpHeaders::rbegin() const
{
- return mHeaders.rbegin();
+ return mHeaders.rbegin();
}
HttpHeaders::reverse_iterator HttpHeaders::rend()
{
- return mHeaders.rend();
+ return mHeaders.rend();
}
HttpHeaders::const_reverse_iterator HttpHeaders::rend() const
{
- return mHeaders.rend();
+ return mHeaders.rend();
}
@@ -192,7 +192,7 @@ HttpHeaders::const_reverse_iterator HttpHeaders::rend() const
//
HttpHeaders::container_t & HttpHeaders::getContainerTESTONLY()
{
- return mHeaders;
+ return mHeaders;
}