diff options
author | Mattes D <github@xoft.cz> | 2016-02-20 12:33:27 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-03-01 16:19:59 +0100 |
commit | 71a1fa81f00cf897d91e8f76cc7e646dd61cc2ff (patch) | |
tree | 5fb4f8639032691b3a09a20b81692ae304693578 /src/HTTP/HTTPServerConnection.h | |
parent | WebAdmin uses the new HTTP parser framework. (diff) | |
download | cuberite-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 'src/HTTP/HTTPServerConnection.h')
-rw-r--r-- | src/HTTP/HTTPServerConnection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/HTTP/HTTPServerConnection.h b/src/HTTP/HTTPServerConnection.h index 62d3b7182..4390471d0 100644 --- a/src/HTTP/HTTPServerConnection.h +++ b/src/HTTP/HTTPServerConnection.h @@ -18,7 +18,7 @@ // fwd: class cHTTPServer; -class cHTTPResponse; +class cHTTPOutgoingResponse; class cHTTPIncomingRequest; @@ -45,7 +45,7 @@ public: void SendNeedAuth(const AString & a_Realm); /** Sends the headers contained in a_Response */ - void Send(const cHTTPResponse & a_Response); + void Send(const cHTTPOutgoingResponse & a_Response); /** Sends the data as the response (may be called multiple times) */ void Send(const void * a_Data, size_t a_Size); |