Exemplo n.º 1
0
 public void OnWrite(BaseSocket sock, byte[] buf, int offset, int length)
 {
     System.Diagnostics.Debug.WriteLine(ENC.GetString(buf, offset, length));
     sock.Close();
 }
Exemplo n.º 2
0
        public bool OnRead(BaseSocket sock, byte[] buf, int offset, int length)
        {
            int tim = (int)m_listener[Options.KEEP_ALIVE];
            if (tim > 0)
                m_timer.Change(tim, tim);

            m_listener.BytesRead(buf, offset, length);
            try
            {
                m_elements.Push(buf, offset, length);
            }
            catch (Exception e)
            {
                ((ISocketEventListener)this).OnError(sock, e);
                sock.Close();
                return false;
            }
            return true;
        }
Exemplo n.º 3
0
 public bool OnRead(BaseSocket sock, byte[] buf, int offset, int length)
 {
     success = ENC.GetString(buf, offset, length);
     sock.Close();
     lock(done)
     {
         Monitor.Pulse(done);
     }
     return false;
 }