diff options
Diffstat (limited to 'extmod/modwebsocket.c')
-rw-r--r-- | extmod/modwebsocket.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/extmod/modwebsocket.c b/extmod/modwebsocket.c index eb11d006d..3175c6167 100644 --- a/extmod/modwebsocket.c +++ b/extmod/modwebsocket.c @@ -33,15 +33,11 @@ #include "py/obj.h" #include "py/runtime.h" #include "py/stream.h" +#include "extmod/modwebsocket.h" #if MICROPY_PY_WEBSOCKET enum { FRAME_HEADER, FRAME_OPT, PAYLOAD }; -#define FRAME_OPCODE_MASK 0x0f -enum { - FRAME_CONT, FRAME_TXT, FRAME_BIN, - FRAME_CLOSE = 0x8, FRAME_PING, FRAME_PONG -}; enum { BLOCKING_WRITE = 0x80 }; |