mirror of
https://github.com/me-no-dev/ESPAsyncWebServer.git
synced 2026-01-28 17:52:19 +01:00
Deprecate ack(size_t len, uint32_t time)
This commit is contained in:
@@ -128,8 +128,7 @@ AsyncEventSourceMessage::~AsyncEventSourceMessage() {
|
||||
free(_data);
|
||||
}
|
||||
|
||||
size_t AsyncEventSourceMessage::ack(size_t len, uint32_t time) {
|
||||
(void)time;
|
||||
size_t AsyncEventSourceMessage::ack(size_t len) {
|
||||
// If the whole message is now acked...
|
||||
if (_acked + len > _len) {
|
||||
// Return the number of extra bytes acked (they will be carried on to the next message)
|
||||
|
||||
Reference in New Issue
Block a user