summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extmod/modwebsocket.c6
-rw-r--r--extmod/modwebsocket.h5
2 files changed, 6 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 };
diff --git a/extmod/modwebsocket.h b/extmod/modwebsocket.h
new file mode 100644
index 000000000..7da147561
--- /dev/null
+++ b/extmod/modwebsocket.h
@@ -0,0 +1,5 @@
+#define FRAME_OPCODE_MASK 0x0f
+enum {
+ FRAME_CONT, FRAME_TXT, FRAME_BIN,
+ FRAME_CLOSE = 0x8, FRAME_PING, FRAME_PONG
+};