diff options
author | madmaxoft <github@xoft.cz> | 2013-09-27 20:33:18 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-09-27 20:33:18 +0200 |
commit | 0c3fd5e77d681c25757efaab6acb305d0b5630c1 (patch) | |
tree | 9d7b16cf1e27cce180c39c89353ad8855ef5def1 /source/HTTPServer/HTTPServer.cpp | |
parent | Split cHTTPConnection implementation into a separate file. (diff) | |
download | cuberite-0c3fd5e77d681c25757efaab6acb305d0b5630c1.tar cuberite-0c3fd5e77d681c25757efaab6acb305d0b5630c1.tar.gz cuberite-0c3fd5e77d681c25757efaab6acb305d0b5630c1.tar.bz2 cuberite-0c3fd5e77d681c25757efaab6acb305d0b5630c1.tar.lz cuberite-0c3fd5e77d681c25757efaab6acb305d0b5630c1.tar.xz cuberite-0c3fd5e77d681c25757efaab6acb305d0b5630c1.tar.zst cuberite-0c3fd5e77d681c25757efaab6acb305d0b5630c1.zip |
Diffstat (limited to '')
-rw-r--r-- | source/HTTPServer/HTTPServer.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/source/HTTPServer/HTTPServer.cpp b/source/HTTPServer/HTTPServer.cpp index 980cad14f..d518df10d 100644 --- a/source/HTTPServer/HTTPServer.cpp +++ b/source/HTTPServer/HTTPServer.cpp @@ -94,6 +94,15 @@ void cHTTPServer::CloseConnection(cHTTPConnection & a_Connection) +void cHTTPServer::NotifyConnectionWrite(cHTTPConnection & a_Connection) +{ + m_SocketThreads.NotifyWrite(&a_Connection); +} + + + + + void cHTTPServer::NewRequest(cHTTPConnection & a_Connection, cHTTPRequest & a_Request) { // TODO @@ -103,7 +112,7 @@ void cHTTPServer::NewRequest(cHTTPConnection & a_Connection, cHTTPRequest & a_Re -void cHTTPServer::RequestBody(cHTTPConnection & a_Connection, cHTTPRequest & a_Request) +void cHTTPServer::RequestBody(cHTTPConnection & a_Connection, cHTTPRequest & a_Request, const char * a_Data, int a_Size) { // TODO } |