1
0

Renamed HTTPResponse to HTTPOutgoingResponse.

This commit is contained in:
Mattes D
2016-02-20 12:33:27 +01:00
parent 52d18b4559
commit 71a1fa81f0
6 changed files with 13 additions and 14 deletions

View File

@@ -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;
} ;