| 60 | int numclients; // Number of connected clients right now. |
| 61 | int maxclient; // The greatest 'clients' slot populated. |
| 62 | struct client *clients[MAX_CLIENTS]; // Clients are set in the corresponding |
| 63 | // slot of their socket descriptor. |
| 64 | }; |
| 65 |
nothing calls this directly
no outgoing calls
no test coverage detected