summaryrefslogtreecommitdiffstats
path: root/src/HTTP/HTTPMessage.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2016-02-20 12:33:27 +0100
committerMattes D <github@xoft.cz>2016-03-01 16:19:59 +0100
commit71a1fa81f00cf897d91e8f76cc7e646dd61cc2ff (patch)
tree5fb4f8639032691b3a09a20b81692ae304693578 /src/HTTP/HTTPMessage.h
parentWebAdmin uses the new HTTP parser framework. (diff)
downloadcuberite-71a1fa81f00cf897d91e8f76cc7e646dd61cc2ff.tar
cuberite-71a1fa81f00cf897d91e8f76cc7e646dd61cc2ff.tar.gz
cuberite-71a1fa81f00cf897d91e8f76cc7e646dd61cc2ff.tar.bz2
cuberite-71a1fa81f00cf897d91e8f76cc7e646dd61cc2ff.tar.lz
cuberite-71a1fa81f00cf897d91e8f76cc7e646dd61cc2ff.tar.xz
cuberite-71a1fa81f00cf897d91e8f76cc7e646dd61cc2ff.tar.zst
cuberite-71a1fa81f00cf897d91e8f76cc7e646dd61cc2ff.zip
Diffstat (limited to '')
-rw-r--r--src/HTTP/HTTPMessage.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/HTTP/HTTPMessage.h b/src/HTTP/HTTPMessage.h
index 683734b67..9afcd5b97 100644
--- a/src/HTTP/HTTPMessage.h
+++ b/src/HTTP/HTTPMessage.h
@@ -65,17 +65,17 @@ protected:
-class cHTTPResponse :
+/** Stores outgoing response headers and serializes them to an HTTP data stream. */
+class cHTTPOutgoingResponse :
public cHTTPMessage
{
typedef cHTTPMessage super;
public:
- cHTTPResponse(void);
+ cHTTPOutgoingResponse(void);
/** Appends the response to the specified datastream - response line and headers.
- The body will be sent later directly through cConnection::Send()
- */
+ The body will be sent later directly through cConnection::Send() */
void AppendToData(AString & a_DataStream) const;
} ;