[*] 修改描述

This commit is contained in:
acgist
2022-11-20 10:34:19 +08:00
parent b1c7bf2601
commit 70db787618
3 changed files with 58 additions and 31 deletions

View File

@@ -71,6 +71,8 @@ const signalProtocol = {
},
/** 平台信令 */
platform: {
/** 异常 */
error: 1999
},
/** 当前索引 */
index: 100000,
@@ -274,6 +276,9 @@ const signalChannel = {
case signalProtocol.client.heartbeat:
console.debug('心跳');
break;
case signalProtocol.platform.error:
console.error('信令发生错误', data);
break;
}
}
};