Esempio n. 1
0
        public int Recv(SslRecord sr)
        {
            int n = 0;

            byte[] b = new byte[SslRecord.SSL_RECORD_MAX_LENGTH];

            n = this.s.Receive(b);
            sr.SetBytes(b, n);

            return(n);
        }