Removed wrong comments

This commit is contained in:
Mathieu Carbou
2024-10-11 08:40:16 +02:00
parent a2fde75b8b
commit 7b39f0e050
2 changed files with 6 additions and 6 deletions

View File

@@ -119,9 +119,9 @@ class AsyncEventSource : public AsyncWebHandler {
public: public:
typedef enum { typedef enum {
DISCARDED = 0, // sent to no client DISCARDED = 0,
ENQUEUED = 1, // sent to all clients ENQUEUED = 1,
PARTIALLY_ENQUEUED = 2, // sent to some clients PARTIALLY_ENQUEUED = 2,
} SendStatus; } SendStatus;
AsyncEventSource(const String& url) : _url(url) {}; AsyncEventSource(const String& url) : _url(url) {};

View File

@@ -278,9 +278,9 @@ class AsyncWebSocket : public AsyncWebHandler {
public: public:
typedef enum { typedef enum {
DISCARDED = 0, // sent to no client DISCARDED = 0,
ENQUEUED = 1, // sent to all clients ENQUEUED = 1,
PARTIALLY_ENQUEUED = 2, // sent to some clients PARTIALLY_ENQUEUED = 2,
} SendStatus; } SendStatus;
explicit AsyncWebSocket(const char* url) : _url(url), _cNextId(1), _enabled(true) {} explicit AsyncWebSocket(const char* url) : _url(url), _cNextId(1), _enabled(true) {}