From 30920ce4ec90eb3166c18421364c728bed5fa30f Mon Sep 17 00:00:00 2001 From: Sakari Kapanen Date: Fri, 4 Aug 2017 00:39:02 +0300 Subject: [PATCH] httpd: add missing typedef --- extras/httpd/httpd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/httpd/httpd.h b/extras/httpd/httpd.h index 59b0095..1214054 100644 --- a/extras/httpd/httpd.h +++ b/extras/httpd/httpd.h @@ -231,7 +231,7 @@ void httpd_post_data_recved(void *connection, u16_t recved_len); #endif /* LWIP_HTTPD_SUPPORT_POST */ -enum { +typedef enum { WS_TEXT_MODE = 0x01, WS_BIN_MODE = 0x02, } WS_MODE;