| 4214 | } |
| 4215 | |
| 4216 | void CServer::LogoutKey(int Key, const char *pReason) |
| 4217 | { |
| 4218 | for(int i = 0; i < MAX_CLIENTS; i++) |
| 4219 | if(m_aClients[i].m_AuthKey == Key) |
| 4220 | LogoutClient(i, pReason); |
| 4221 | } |
| 4222 | |
| 4223 | void CServer::ConchainRconPasswordChangeGeneric(const char *pRoleName, const char *pCurrent, IConsole::IResult *pResult) |
| 4224 | { |
no outgoing calls
no test coverage detected