diff --git a/keywords.txt b/keywords.txt index 1d8bb80..8d6a7ca 100644 --- a/keywords.txt +++ b/keywords.txt @@ -30,7 +30,7 @@ endOfHeadersReached KEYWORD2 endOfBodyReached KEYWORD2 completed KEYWORD2 contentLength KEYWORD2 -isChunked KEYWORD2 +isResponseChunked KEYWORD2 connectionKeepAlive KEYWORD2 noDefaultRequestHeaders KEYWORD2 headerAvailable KEYWORD2 diff --git a/src/HttpClient.h b/src/HttpClient.h index 7433f67..e120ef7 100644 --- a/src/HttpClient.h +++ b/src/HttpClient.h @@ -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