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/HTTPConnection.h | |
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/HTTPConnection.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/HTTPServer/HTTPConnection.h b/source/HTTPServer/HTTPConnection.h index e2df5de46..d8ecdf1d9 100644 --- a/source/HTTPServer/HTTPConnection.h +++ b/source/HTTPServer/HTTPConnection.h @@ -72,6 +72,9 @@ protected: /// The request being currently received (valid only between having parsed the headers and finishing receiving the body) cHTTPRequest * m_CurrentRequest; + + /// Number of bytes that remain to read for the complete body of the message to be received. Valid only in wcsRecvBody + int m_CurrentRequestBodyRemaining; // cSocketThreads::cCallback overrides: |