using System; using System.Collections.Concurrent; using System.Net; using System.Net.Sockets; using System.Text; using System.Threading; using Systehttp://m.Threading.Tasks;// --- SAEA 기반 TCP 서버 --- public class SaeaTcpServer { private readonly int _port; private readonly Socket _listenSocket; private readonly int _maxConnections; private readonly BufferManager _bufferManager; ..