mirror of
https://gitee.com/lijingbo-2021/open-anylink-web.git
synced 2026-05-17 20:58:02 +00:00
13 lines
226 B
JavaScript
13 lines
226 B
JavaScript
export const msgType = {
|
||
NO_MORE_MSG: 1,
|
||
USER_MSG: 2
|
||
}
|
||
|
||
export const proto = {
|
||
magic: 0x8e110b0b,
|
||
version: 0x01
|
||
}
|
||
|
||
// 和服务端约定好的,第一个消息都是从10001开始的
|
||
export const BEGIN_MSG_ID = 10001
|