From 007dcbdaa4e02859715bf04362ee67245d0dcd3b Mon Sep 17 00:00:00 2001 From: Th3maz1ng Date: Sat, 11 Jun 2022 11:46:53 +0200 Subject: [PATCH] Temporarily disabled the overloaded fillDataBuffer method which introduces issues ... --- src/app/WEBServer.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/WEBServer.h b/src/app/WEBServer.h index 2c340f2..5cd8e3d 100644 --- a/src/app/WEBServer.h +++ b/src/app/WEBServer.h @@ -98,6 +98,7 @@ class WEBServer : public TCPServer, public HttpConstants * The remaining data should NOT BE READ if the MIME TYPE is not APPLICATION_X_WWW_FORM_URLENCODED * so that we can consume the full request body later. */ + #if 0 virtual void fillDataBuffer(T *client) { uint16_t freeSpace = (client->_dataBufferSize-1/*for \0*/ - client->_dataSize); @@ -120,6 +121,7 @@ class WEBServer : public TCPServer, public HttpConstants client->_newDataAvailable = true; } } + #endif virtual void greetClient(T *client) {