summaryrefslogtreecommitdiff
path: root/lib/httpserver/HTTPResponse.h
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2015-08-29 08:46:22 +0000
committerChris Wilson <chris+github@qwirx.com>2015-08-29 08:46:22 +0000
commitace361b403a3308d3c94f05c3b099e3feabeb0fd (patch)
tree3806ed819190f9679bd63d731b36c091174b2c0c /lib/httpserver/HTTPResponse.h
parent161181f9e6f8bad2df42aa7a73ac620452663248 (diff)
Whitespace, import order and comment fixes
Diffstat (limited to 'lib/httpserver/HTTPResponse.h')
-rw-r--r--lib/httpserver/HTTPResponse.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/httpserver/HTTPResponse.h b/lib/httpserver/HTTPResponse.h
index 7911f8b5..f39825d9 100644
--- a/lib/httpserver/HTTPResponse.h
+++ b/lib/httpserver/HTTPResponse.h
@@ -129,7 +129,7 @@ public:
};
static const char *ResponseCodeToString(int ResponseCode);
-
+
void WriteStringDefang(const char *String, unsigned int StringLen);
void WriteStringDefang(const std::string &rString) {WriteStringDefang(rString.c_str(), rString.size());}
@@ -167,7 +167,7 @@ private:
std::vector<Header> mExtraHeaders;
int64_t mContentLength; // only used when reading response from stream
IOStream* mpStreamToSendTo; // nonzero only when constructed with a stream
-
+
static std::string msDefaultURIPrefix;
void ParseHeaders(IOStreamGetLine &rGetLine, int Timeout);