(api *API, user uint)
| 505 | } |
| 506 | |
| 507 | func clients(api *API, user uint) []*client { |
| 508 | api.lock.RLock() |
| 509 | defer api.lock.RUnlock() |
| 510 | |
| 511 | return api.clients[user] |
| 512 | } |
| 513 | |
| 514 | func countClients(a *API) int { |
| 515 | a.lock.RLock() |
no outgoing calls
no test coverage detected
searching dependent graphs…