Esempio n. 1
0
        //public ClientKiller SelfDestruct;

        public TCPClientConn(IPEndPoint ipep, ClientMsgCache cache)
        {
            _remoteEP  = ipep;
            _msgCache  = cache;
            connThread = new Thread(new ThreadStart(BidiChat));
            connThread.Start();
        }
Esempio n. 2
0
 public RemConWebSession(IPEndPoint ipep, string sid)
 {
     _msgCache  = new ClientMsgCache();
     _conn      = new TCPClientConn(ipep, _msgCache);
     _SessionID = sid;
 }