diff options
author | Mattes D <github@xoft.cz> | 2016-02-04 17:44:10 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-03-01 16:19:58 +0100 |
commit | 12d95ab0474dffa443bf82834177db7e10110fae (patch) | |
tree | a263e20ce91346df7babcce30940c9c03124784a /src/HTTP/HTTPResponseParser.h | |
parent | Fixed HTTP parsing when in insecure mode. (diff) | |
download | cuberite-12d95ab0474dffa443bf82834177db7e10110fae.tar cuberite-12d95ab0474dffa443bf82834177db7e10110fae.tar.gz cuberite-12d95ab0474dffa443bf82834177db7e10110fae.tar.bz2 cuberite-12d95ab0474dffa443bf82834177db7e10110fae.tar.lz cuberite-12d95ab0474dffa443bf82834177db7e10110fae.tar.xz cuberite-12d95ab0474dffa443bf82834177db7e10110fae.tar.zst cuberite-12d95ab0474dffa443bf82834177db7e10110fae.zip |
Diffstat (limited to '')
-rw-r--r-- | src/HTTP/HTTPResponseParser.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/HTTP/HTTPResponseParser.h b/src/HTTP/HTTPResponseParser.h index 19652ccef..1d867ecc5 100644 --- a/src/HTTP/HTTPResponseParser.h +++ b/src/HTTP/HTTPResponseParser.h @@ -51,8 +51,7 @@ public: cHTTPResponseParser(cCallbacks & a_Callbacks); /** Parses the incoming data and calls the appropriate callbacks. - Returns the number of bytes from the end of a_Data that is already not part of this response. - Returns AString::npos on an error. */ + Returns the number of bytes consumed or AString::npos number for error. */ size_t Parse(const char * a_Data, size_t a_Size); /** Called when the server indicates no more data will be sent (HTTP 1.0 socket closed). @@ -97,8 +96,7 @@ protected: /** Parses the message body. Processes transfer encoding and calls the callbacks for body data. - Returns the number of bytes from the end of a_Data that is already not part of this response. - Returns AString::npos on error. */ + Returns the number of bytes consumed or AString::npos number for error. */ size_t ParseBody(const char * a_Data, size_t a_Size); /** Called internally when the headers-parsing has just finished. */ |