mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-16 17:18:56 +00:00
11 lines
270 B
C
Executable File
11 lines
270 B
C
Executable File
#ifndef MICROPY_INCLUDED_EXTMOD_MODWEBSOCKET_H
|
|
#define MICROPY_INCLUDED_EXTMOD_MODWEBSOCKET_H
|
|
|
|
#define FRAME_OPCODE_MASK 0x0f
|
|
enum {
|
|
FRAME_CONT, FRAME_TXT, FRAME_BIN,
|
|
FRAME_CLOSE = 0x8, FRAME_PING, FRAME_PONG
|
|
};
|
|
|
|
#endif // MICROPY_INCLUDED_EXTMOD_MODWEBSOCKET_H
|