From fdedff59b8a795c5205d9d90fa4e5cee28f3cc78 Mon Sep 17 00:00:00 2001 From: Sandeep Mistry Date: Thu, 13 Apr 2017 09:33:01 -0400 Subject: [PATCH] Rename isChunked to isResponseChunked --- keywords.txt | 2 +- src/HttpClient.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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