| 54 | } |
| 55 | |
| 56 | void CNetConsole::Drop(int ClientId, const char *pReason) |
| 57 | { |
| 58 | if(m_pfnDelClient) |
| 59 | m_pfnDelClient(ClientId, pReason, m_pUser); |
| 60 | |
| 61 | m_aSlots[ClientId].m_Connection.Disconnect(pReason); |
| 62 | } |
| 63 | |
| 64 | int CNetConsole::AcceptClient(NETSOCKET Socket, const NETADDR *pAddr) |
| 65 | { |
nothing calls this directly
no test coverage detected