1. 28 May, 2013 3 commits
  2. 27 May, 2013 1 commit
  3. 22 May, 2013 2 commits
    • Mike Giancola's avatar
      ossl_recv: SSL_read() returning 0 is an error too · 520833cb
      Mike Giancola authored
      SSL_read can return 0 for "not successful", according to the open SSL
      documentation: http://www.openssl.org/docs/ssl/SSL_read.html
      520833cb
    • Mike Giancola's avatar
      ossl_send: SSL_write() returning 0 is an error too · e58d9c87
      Mike Giancola authored
      We found that in specific cases if the connection is abruptly closed,
      the underlying socket is listed in a close_wait state. We continue to
      call the curl_multi_perform, curl_mutli_fdset etc. None of these APIs
      report the socket closed / connection finished.  Since we have cases
      where the multi connection is only used once, this can pose a problem
      for us. I've read that if another connection was to come in, curl would
      see the socket as bad and attempt to close it at that time -
      unfortunately, this does not work for us.
      
      I found that in specific situations, if SSL_write returns 0, curl did
      not recognize the socket as closed (or errored out) and did not report
      it to the application. I believe we need to change the code slightly, to
      check if ssl_write returns 0. If so, treat it as an error - the same as
      a negative return code.
      
      For OpenSSL - the ssl_write documentation is here:
      http://www.openssl.org/docs/ssl/SSL_write.html
      e58d9c87
  4. 21 May, 2013 2 commits
  5. 20 May, 2013 1 commit
  6. 19 May, 2013 3 commits
  7. 18 May, 2013 1 commit
  8. 16 May, 2013 1 commit
  9. 12 May, 2013 2 commits
  10. 11 May, 2013 1 commit
  11. 09 May, 2013 2 commits
  12. 08 May, 2013 1 commit
  13. 07 May, 2013 3 commits
  14. 06 May, 2013 9 commits
  15. 05 May, 2013 1 commit
  16. 04 May, 2013 5 commits
  17. 03 May, 2013 2 commits