Exemplo n.º 1
0
        private void ClientConnected(Socket s)
        {
            Client c = new Client(nmbrOfClients, s, this);

            clientList.Add(c);
            c.SendAcceptPoll();

            nmbrOfClients++;
        }
Exemplo n.º 2
0
        void ClientConnected(Socket s)
        {
            Client c = new Client(nmbrOfClients, s, this);
            clientList.Add(c);
            c.SendAcceptPoll();

            nmbrOfClients++;
        }