Rename user.clients to clientNames
This doesn't contain anything other than just the names. Make this clearer.
This commit is contained in:
parent
ecf35187fa
commit
5e11e717f1
@ -1752,7 +1752,7 @@ func (uc *upstreamConn) appendLog(entity string, msg *irc.Message) (msgID string
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
for clientName, _ := range uc.user.clients {
|
for clientName, _ := range uc.user.clientNames {
|
||||||
uc.network.delivered.StoreID(entity, clientName, lastID)
|
uc.network.delivered.StoreID(entity, clientName, lastID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
16
user.go
16
user.go
@ -308,7 +308,7 @@ type user struct {
|
|||||||
networks []*network
|
networks []*network
|
||||||
downstreamConns []*downstreamConn
|
downstreamConns []*downstreamConn
|
||||||
msgStore messageStore
|
msgStore messageStore
|
||||||
clients map[string]struct{} // indexed by client name
|
clientNames map[string]struct{}
|
||||||
|
|
||||||
// LIST commands in progress
|
// LIST commands in progress
|
||||||
pendingLISTs []pendingLIST
|
pendingLISTs []pendingLIST
|
||||||
@ -329,12 +329,12 @@ func newUser(srv *Server, record *User) *user {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return &user{
|
return &user{
|
||||||
User: *record,
|
User: *record,
|
||||||
srv: srv,
|
srv: srv,
|
||||||
events: make(chan event, 64),
|
events: make(chan event, 64),
|
||||||
done: make(chan struct{}),
|
done: make(chan struct{}),
|
||||||
msgStore: msgStore,
|
msgStore: msgStore,
|
||||||
clients: make(map[string]struct{}),
|
clientNames: make(map[string]struct{}),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -490,7 +490,7 @@ func (u *user) run() {
|
|||||||
uc.updateAway()
|
uc.updateAway()
|
||||||
})
|
})
|
||||||
|
|
||||||
u.clients[dc.clientName] = struct{}{}
|
u.clientNames[dc.clientName] = struct{}{}
|
||||||
case eventDownstreamDisconnected:
|
case eventDownstreamDisconnected:
|
||||||
dc := e.dc
|
dc := e.dc
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user