This commit is contained in:
laodaming 2023-07-26 17:55:14 +08:00
parent fcd20e7fc2
commit 9a8bdcb5ba

View File

@ -193,18 +193,21 @@ func (w *wsConnectItem) readLoop() {
case <-w.closeChan: //如果关闭了 case <-w.closeChan: //如果关闭了
return return
default: default:
_, data, err := w.conn.ReadMessage() msgType, data, err := w.conn.ReadMessage()
if err != nil { if err != nil {
logx.Error("接受信息错误:", err) logx.Error("接受信息错误:", err)
//关闭连接 //关闭连接
w.close() w.close()
return return
} }
//ping的消息不处理
if msgType != websocket.PingMessage {
//消息传入缓冲通道 //消息传入缓冲通道
w.inChan <- data w.inChan <- data
} }
} }
} }
}
// 把收到的消息发往不同的地方处理 // 把收到的消息发往不同的地方处理
func (w *wsConnectItem) sendLoop() { func (w *wsConnectItem) sendLoop() {