diff options
author | Mattes D <github@xoft.cz> | 2016-02-21 11:34:16 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-03-01 16:20:00 +0100 |
commit | 6ff389f6d48fd66c77286ac384031863ccf2a768 (patch) | |
tree | 83219a6eaf87a2050c10662fb8caa5d1514a6af4 /src/HTTP/TransferEncodingParser.cpp | |
parent | Renamed HTTPResponse to HTTPOutgoingResponse. (diff) | |
download | cuberite-6ff389f6d48fd66c77286ac384031863ccf2a768.tar cuberite-6ff389f6d48fd66c77286ac384031863ccf2a768.tar.gz cuberite-6ff389f6d48fd66c77286ac384031863ccf2a768.tar.bz2 cuberite-6ff389f6d48fd66c77286ac384031863ccf2a768.tar.lz cuberite-6ff389f6d48fd66c77286ac384031863ccf2a768.tar.xz cuberite-6ff389f6d48fd66c77286ac384031863ccf2a768.tar.zst cuberite-6ff389f6d48fd66c77286ac384031863ccf2a768.zip |
Diffstat (limited to 'src/HTTP/TransferEncodingParser.cpp')
-rw-r--r-- | src/HTTP/TransferEncodingParser.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/HTTP/TransferEncodingParser.cpp b/src/HTTP/TransferEncodingParser.cpp index d95b3d08e..a14900e9c 100644 --- a/src/HTTP/TransferEncodingParser.cpp +++ b/src/HTTP/TransferEncodingParser.cpp @@ -1,7 +1,7 @@ // TransferEncodingParser.cpp -// Implements the cTransferEncodingParser class and its descendants representing the parser for the various transfer encodings (chunked etc.) +// Implements the cTransferEncodingParser class and its descendants representing the parsers for the various transfer encodings (chunked etc.) #include "Globals.h" #include "TransferEncodingParser.h" @@ -50,6 +50,7 @@ protected: When in psChunkLength, the value is the currently parsed length digits. */ size_t m_ChunkDataLengthLeft; + /** The parser used for the last (empty) chunk's trailer data */ cEnvelopeParser m_TrailerParser; |