fix: platform client conn delete

This commit is contained in:
Gordon 2023-06-06 21:05:32 +08:00
parent 8ab6d91708
commit 05460a1b7e

View File

@ -45,10 +45,10 @@ type PongHandler func(string) error
type Client struct {
w *sync.Mutex
conn LongConn
platformID int
isCompress bool
userID string
isBackground bool
platformID int `json:"platformID"`
isCompress bool `json:"isCompress"`
userID string `json:"userID"`
isBackground bool `json:"isBackground"`
ctx *UserConnContext
longConnServer LongConnServer
closed bool