mirror of
https://github.com/me-no-dev/ESPAsyncWebServer.git
synced 2025-08-17 03:20:58 +02:00
Removed wrong comments
This commit is contained in:
@@ -119,9 +119,9 @@ class AsyncEventSource : public AsyncWebHandler {
|
||||
|
||||
public:
|
||||
typedef enum {
|
||||
DISCARDED = 0, // sent to no client
|
||||
ENQUEUED = 1, // sent to all clients
|
||||
PARTIALLY_ENQUEUED = 2, // sent to some clients
|
||||
DISCARDED = 0,
|
||||
ENQUEUED = 1,
|
||||
PARTIALLY_ENQUEUED = 2,
|
||||
} SendStatus;
|
||||
|
||||
AsyncEventSource(const String& url) : _url(url) {};
|
||||
|
@@ -278,9 +278,9 @@ class AsyncWebSocket : public AsyncWebHandler {
|
||||
|
||||
public:
|
||||
typedef enum {
|
||||
DISCARDED = 0, // sent to no client
|
||||
ENQUEUED = 1, // sent to all clients
|
||||
PARTIALLY_ENQUEUED = 2, // sent to some clients
|
||||
DISCARDED = 0,
|
||||
ENQUEUED = 1,
|
||||
PARTIALLY_ENQUEUED = 2,
|
||||
} SendStatus;
|
||||
|
||||
explicit AsyncWebSocket(const char* url) : _url(url), _cNextId(1), _enabled(true) {}
|
||||
|
Reference in New Issue
Block a user