File with more than 32,767 characters (#2566)
This commit is contained in:
parent
a87b2ec690
commit
e0beac88c9
@ -26,7 +26,7 @@ WiFiClient client;
|
|||||||
|
|
||||||
// Variables to validate
|
// Variables to validate
|
||||||
// response from S3
|
// response from S3
|
||||||
int contentLength = 0;
|
long contentLength = 0;
|
||||||
bool isValidContentType = false;
|
bool isValidContentType = false;
|
||||||
|
|
||||||
// Your SSID and PSWD that the chip needs
|
// Your SSID and PSWD that the chip needs
|
||||||
@ -120,7 +120,7 @@ void execOTA() {
|
|||||||
// extract headers here
|
// extract headers here
|
||||||
// Start with content length
|
// Start with content length
|
||||||
if (line.startsWith("Content-Length: ")) {
|
if (line.startsWith("Content-Length: ")) {
|
||||||
contentLength = atoi((getHeaderValue(line, "Content-Length: ")).c_str());
|
contentLength = atol((getHeaderValue(line, "Content-Length: ")).c_str());
|
||||||
Serial.println("Got " + String(contentLength) + " bytes from server");
|
Serial.println("Got " + String(contentLength) + " bytes from server");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user