sysread_nonblock(*args)
private
A non-blocking version of #sysread. Raises an SSLError if reading would block.
Reads length bytes from the SSL connection. If a pre-allocated
buffer is provided the data will be written into it.
static VALUE
ossl_ssl_read_nonblock(int argc, VALUE *argv, VALUE self)
{
return ossl_ssl_read_internal(argc, argv, self, 1);
}