BIO pair is non-blocking BIO, so you need to call SSL_accept() or
SSL_do_handshake() for server times.
The example code looks like follows:

BIO_write(ebio, ...)
SSL_accept(ssl)
BIO_read(ebio, ...)

you can use BIO_pending() and BIO_wpending() to watch the buffer status of
the BIO pairs.

On Mon, May 23, 2011 at 9:18 AM, G S <stokest...@gmail.com> wrote:

> Ah, yes, I realized later that there wasn't any communication info in
> there.  I only use it for encryption.
>
> Good luck!
>

Reply via email to