示例#1
0
        private static bool OnListDirectorys(ByteArray byteArray, IFileServerService serverService)
        {
            String name = byteArray.readUTF();

            int crc = byteArray.readIntNCRC();

            if (crc == byteArray.CRC)
            {
                serverService.OnListDirectorys(name);
            }
            byteArray.Recycle();
            return(true);
        }