add websocket destroy reason.

This commit is contained in:
Miroslav Šedivý
2021-09-02 21:52:23 +02:00
parent d7671942a6
commit c85d00e507
5 changed files with 9 additions and 29 deletions

View File

@ -122,7 +122,7 @@ func (manager *SessionManagerCtx) Delete(id string) error {
manager.sessionsMu.Unlock()
if session.State().IsConnected {
session.GetWebSocketPeer().Destroy()
session.GetWebSocketPeer().Destroy("session deleted")
}
if session.State().IsWatching {

View File

@ -35,7 +35,7 @@ func (session *SessionCtx) profileChanged() {
}
if (!session.profile.CanConnect || !session.profile.CanLogin) && session.state.IsConnected {
session.websocketPeer.Destroy()
session.websocketPeer.Destroy("profile changed")
}
}
@ -53,7 +53,7 @@ func (session *SessionCtx) IsHost() bool {
func (session *SessionCtx) SetWebSocketPeer(websocketPeer types.WebSocketPeer) {
if session.websocketPeer != nil {
session.websocketPeer.Destroy()
session.websocketPeer.Destroy("connection replaced")
}
session.websocketPeer = websocketPeer