//public ClientKiller SelfDestruct; public TCPClientConn(IPEndPoint ipep, ClientMsgCache cache) { _remoteEP = ipep; _msgCache = cache; connThread = new Thread(new ThreadStart(BidiChat)); connThread.Start(); }
public RemConWebSession(IPEndPoint ipep, string sid) { _msgCache = new ClientMsgCache(); _conn = new TCPClientConn(ipep, _msgCache); _SessionID = sid; }