CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: SamLowry85

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    5,876

    Re: OpenSSL interrupt blocking SSL_read

    Thanks a lot Richard,

    Setting the sock option like so:

    DWORD dwTimeout = 5000; // 5 seconds
    setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (const char*)&dwTimeout, sizeof(DWORD)) ;

    works just...
  2. Replies
    2
    Views
    5,876

    OpenSSL interrupt blocking SSL_read

    Hi,
    I'm trying to implement tls client with openssl.
    I need to use blocking SSL_read that timeouts after specified period.
    On unix a frequently used pattern is something like this:...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured