[*] 日常优化

This commit is contained in:
acgist
2023-09-07 07:38:52 +08:00
parent 8b82ce01a1
commit 9d12a8ca2d
2 changed files with 6 additions and 2 deletions

View File

@@ -2802,8 +2802,8 @@ class Taoyao extends RemoteClient {
*/ */
roomBroadcast(message) { roomBroadcast(message) {
this.push(protocol.buildMessage("room::broadcast", { this.push(protocol.buildMessage("room::broadcast", {
...message,
roomId : this.roomId, roomId : this.roomId,
...message
})); }));
} }

View File

@@ -26,9 +26,13 @@ import lombok.extern.slf4j.Slf4j;
""" """
{ {
"roomId" : "房间ID", "roomId" : "房间ID",
"transportId" : "通道ID" "transportId" : "通道ID",
"dtlsParameters": "DTLS参数" "dtlsParameters": "DTLS参数"
} }
{
"roomId" : "房间标识",
"transportId" : "传输通道标识"
}
""" """
}, },
flow = "终端=>信令服务->媒体服务" flow = "终端=>信令服务->媒体服务"