Compare commits

..

3 commits

View file

@ -16,10 +16,12 @@ func RemoveStaleClients() {
for range ticker.C {
mu.Lock()
for _, client := range Clients {
if !sendPing(client) || isStale(client) {
ping := sendPing(client)
stale := isStale(client)
if !ping || stale {
client.Conn.Close()
delete(Clients, client.Conn.LocalAddr())
helper.Logger.Info("Removed stale client", "host", client.RealIP, "lastPong", client.LastPong)
helper.Logger.Info("Removed stale client", "host", client.RealIP, "lastPong", client.LastPong.Format("RFC3339"))
}
}
mu.Unlock()
@ -31,7 +33,6 @@ func sendPing(client *models.WebsocketClient) bool {
err := client.Conn.WriteMessage(websocket.PingMessage, nil)
if err != nil {
helper.Logger.Debug("ping failed", "host", client.RealIP)
return false
}