Ejemplo n.º 1
0
        public void ClinetRequestHandler(TcpClient clinet)
        {
            while (true)
            {
                string msg = "";

                if (Rule.CheckMsg(msg))
                {
                    Rule.DoAct(msg);
                }
            }
        }