merge ping and stale check
This commit is contained in:
parent
c76ea3628b
commit
58ac2d2950
1 changed files with 1 additions and 7 deletions
|
@ -30,13 +30,7 @@ func RemoveStaleClients() {
|
||||||
for range ticker.C {
|
for range ticker.C {
|
||||||
mu.Lock()
|
mu.Lock()
|
||||||
for _, client := range Clients {
|
for _, client := range Clients {
|
||||||
if !sendPing(client) {
|
if !sendPing(client) || isStale(client) {
|
||||||
client.Conn.Close()
|
|
||||||
delete(Clients, client.Conn.LocalAddr())
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
if isStale(client) {
|
|
||||||
client.Conn.Close()
|
client.Conn.Close()
|
||||||
delete(Clients, client.Conn.LocalAddr())
|
delete(Clients, client.Conn.LocalAddr())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue