From 881118cb8f420efc93d2a4da3b5dbe97cdc5b20d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20=C3=96ster?= Date: Mon, 28 Jul 2025 09:20:03 +0300 Subject: [PATCH] Fix compilation error Fix compilation error when using this library with latest v3.7.10 ESPAsyncWebserver --- src/AsyncTCP.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AsyncTCP.h b/src/AsyncTCP.h index 50cfd4e..4da722e 100644 --- a/src/AsyncTCP.h +++ b/src/AsyncTCP.h @@ -276,7 +276,7 @@ class AsyncServer : public AsyncSocketBase void setNoDelay(bool nodelay) { _noDelay = nodelay; } bool getNoDelay() { return _noDelay; } - uint8_t status(); + uint8_t status() const; protected: uint16_t _port;