| 1470 | } |
| 1471 | |
| 1472 | int CServer::NumRconCommands(int ClientId) |
| 1473 | { |
| 1474 | int Num = 0; |
| 1475 | for(const IConsole::ICommandInfo *pCmd = Console()->FirstCommandInfo(ClientId, CFGFLAG_SERVER); |
| 1476 | pCmd; pCmd = Console()->NextCommandInfo(pCmd, ClientId, CFGFLAG_SERVER)) |
| 1477 | { |
| 1478 | Num++; |
| 1479 | } |
| 1480 | return Num; |
| 1481 | } |
| 1482 | |
| 1483 | void CServer::UpdateClientRconCommands(int ClientId) |
| 1484 | { |
nothing calls this directly
no test coverage detected