MCPcopy Create free account
hub / github.com/FastLED/FastLED / nextChunkSize

Method nextChunkSize

src/fl/net/http/chunked_encoding.cpp.hpp:105–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103}
104
105size_t ChunkedReader::nextChunkSize() const {
106 if (mChunks.empty()) {
107 return 0;
108 }
109 return mChunks.front().size();
110}
111
112bool ChunkedReader::isFinal() const {
113 return mState == STATE_FINAL;

Callers 3

parseChunkedMessagesMethod · 0.80
parseBodyMethod · 0.80
FL_TEST_FILEFunction · 0.80

Calls 3

emptyMethod · 0.45
sizeMethod · 0.45
frontMethod · 0.45

Tested by

no test coverage detected