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) {