Functions _uploadReadByte and _parseForm were modified in order to (#1677)

speed up uploading data. Now there is no need to call time consuming
client.connected() method.
This commit is contained in:
MaValki
2018-07-25 17:37:15 +02:00
committed by Me No Dev
parent 1fe3ee87b6
commit 2f5b3c0c56
2 changed files with 12 additions and 11 deletions

View File

@ -147,7 +147,7 @@ protected:
bool _parseForm(WiFiClient& client, String boundary, uint32_t len);
bool _parseFormUploadAborted();
void _uploadWriteByte(uint8_t b);
uint8_t _uploadReadByte(WiFiClient& client);
int _uploadReadByte(WiFiClient& client);
void _prepareHeader(String& response, int code, const char* content_type, size_t contentLength);
bool _collectHeader(const char* headerName, const char* headerValue);