| 7 | class CServer |
| 8 | { |
| 9 | class CClient |
| 10 | { |
| 11 | public: |
| 12 | enum |
| 13 | { |
| 14 | STATE_EMPTY=0, |
| 15 | STATE_CONNECTED, |
| 16 | STATE_AUTHED, |
| 17 | }; |
| 18 | |
| 19 | int m_State; |
| 20 | int64 m_TimeConnected; |
| 21 | int64 m_LastReceived; |
| 22 | }; |
| 23 | CClient m_aClients[NET_MAX_CLIENTS]; |
| 24 | |
| 25 | CNetwork m_Network; |
nothing calls this directly
no outgoing calls
no test coverage detected