On Tue, Dec 02, 2003, tuviah snyder wrote:

> Oops sorry wrong thread.
> 
> Can anyone help me with my Windows Async sockets questions? I have it
> working fine on Unix, and I'm hoping I don't have to modify my app to use
> select or polling.
> 

OpenSSL socket BIOs don't care how you decide data is available on whatever the
host OS version of a socket is.

All that matters is that it is using the correct I/O commands and that it can
correctly determine how much data (if any) is avaiable.

Under Windows the socket BIOs use send/recv on the relevant socket as long as
that's OK for the method you are using it should work. If that isn't OK you
could either write your own BIO for the relevant transport you are using or
use a BIO pair and process the data at an application level.

Steve.
--
Dr Stephen N. Henson. Email, S/MIME and PGP keys: see homepage
OpenSSL project core developer and freelance consultant.
Funding needed! Details on homepage.
Homepage: http://www.drh-consultancy.demon.co.uk
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to