CentralMine.NET.Listener.ListenLoop C# (CSharp) Method

ListenLoop() private method

private ListenLoop ( ) : void
return void
        void ListenLoop()
        {
            mSocket.Start();

            while (true)
            {
                TcpClient client = mSocket.AcceptTcpClient();
                mTheMan.AcceptClient(client);
            }
        }