summaryrefslogtreecommitdiffstats
path: root/src/HTTP/HTTPMessage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/HTTP/HTTPMessage.h')
-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;
} ;