Changed attribute type from uint64_t to size_t

This commit is contained in:
Th3maz1ng 2022-04-23 22:44:16 +02:00
parent 057c058ca3
commit 16cae233bb

View File

@ -16,7 +16,7 @@ class WEBClient : public TCPClient
private:
WEBServer<WEBClient>::HttpRequestData _httpRequestData;
WEBServer<WEBClient>::HttpParserStatus _httpParserState = WEBServer<WEBClient>::HttpParserStatus::PARSE_HTTP_VERB;
uint64_t _fileSentBytes = 0;
size_t _fileSentBytes = 0;
struct
{
bool _rangeRequest;