Skip to content

Commit 47a57e1

Browse files
authored
Update to ESP8266HTTPClient.cpp for no Content-Length (esp8266#7691)
Response bodies are ignored when _transferEncoding == HTTPC_TE_IDENTITY and there is no Content-Length header. The added code here fixes that issue. Add logic to writeToStreamDataBlock to only read what's available so as to avoid timeout, and adjust formatting.
1 parent 27b54f5 commit 47a57e1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ int HTTPClient::writeToStream(Stream * stream)
725725
int ret = 0;
726726

727727
if(_transferEncoding == HTTPC_TE_IDENTITY) {
728-
if(len > 0) {
728+
if(len > 0 || len == -1) {
729729
ret = writeToStreamDataBlock(stream, len);
730730

731731
// have we an error?
@@ -1184,6 +1184,12 @@ int HTTPClient::writeToStreamDataBlock(Stream * stream, int size)
11841184
if(readBytes > buff_size) {
11851185
readBytes = buff_size;
11861186
}
1187+
1188+
// len == -1 or len > what is available, read only what is available
1189+
int av = _client->available();
1190+
if (readBytes < 0 || readBytes > av) {
1191+
readBytes = av;
1192+
}
11871193

11881194
// read data
11891195
int bytesRead = _client->readBytes(buff, readBytes);

0 commit comments

Comments
 (0)