1
0
mirror of https://github.com/arduino-libraries/ArduinoHttpClient.git synced 2025-07-03 16:42:31 +03:00

Rename isChunked to isResponseChunked

This commit is contained in:
Sandeep Mistry
2017-04-13 09:33:01 -04:00
parent 2a9c01c210
commit fdedff59b8
2 changed files with 2 additions and 2 deletions

View File

@ -270,7 +270,7 @@ public:
/** Returns if the response body is chunked
@return true if response body is chunked, false otherwise
*/
int isChunked() { return iIsChunked; }
int isResponseChunked() { return iIsChunked; }
/** Return the response body as a String
Also skips response headers if they have not been read already