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 /tests/HTTP/HTTPResponseParser_file.cpp | |
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-- | tests/HTTP/HTTPResponseParser_file.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/HTTP/HTTPResponseParser_file.cpp b/tests/HTTP/HTTPResponseParser_file.cpp index 48ff928bc..7e8d127b7 100644 --- a/tests/HTTP/HTTPResponseParser_file.cpp +++ b/tests/HTTP/HTTPResponseParser_file.cpp @@ -122,16 +122,16 @@ int main(int argc, char * argv[]) printf("Read 0 bytes from file (EOF?), terminating\n"); break; } - auto numLeft = parser.Parse(buf, numBytes); - if (numLeft == AString::npos) + auto numConsumed = parser.Parse(buf, numBytes); + if (numConsumed == AString::npos) { printf("Parser indicates there was an error, terminating parsing.\n"); break; } - ASSERT(numLeft <= numBytes); - if (numLeft > 0) + ASSERT(numConsumed <= numBytes); + if (numConsumed < numBytes) { - printf("Parser indicates stream end, but there's more data (at least %u bytes) in the file.\n", static_cast<unsigned>(numLeft)); + printf("Parser indicates stream end, but there's more data (at least %u bytes) in the file.\n", static_cast<unsigned>(numBytes - numConsumed)); } } if (!parser.IsFinished()) |