CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 7 of 7

Threaded View

  1. #4
    Join Date
    May 2007
    Posts
    11

    Re: Programming socket IOCP with OpenSSL

    [Referring to the example code from the BIO_s_bio manpage]

    After WSARecv completion make the data available to the SSL engine by using BIO_write(network_bio, ..., ...).

    With BIO_read(network_bio, ..., ...) you can read the data from the engine and send it via WSASend.
    Last edited by Grober; January 6th, 2010 at 11:41 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured