Merge branch 'develop' of gitee.com:fusenpack/fusenapi into develop

This commit is contained in:
momo 2023-08-23 15:45:07 +08:00
commit e5093c4c5d

View File

@ -70,8 +70,8 @@ type wsConnectItem struct {
closeChan chan struct{} //ws连接关闭chan(基本属性)
isClose bool //是否已经关闭(基本属性)
uniqueId string //ws连接唯一标识(基本属性)
inChan chan []byte //接受消息缓冲通道(基本属性)
outChan chan []byte //发送回客户端的消息(基本属性)
inChan chan []byte //接受消息缓冲(基本属性)
outChan chan []byte //发送回客户端的消息缓冲池(基本属性)
mutex sync.Mutex //互斥锁(关闭连接方法中用)
userId int64 //用户id(基本属性)
guestId int64 //游客id(基本属性)