1. 15 Mar, 2016 9 commits
  2. 14 Mar, 2016 14 commits
  3. 13 Mar, 2016 3 commits
  4. 12 Mar, 2016 12 commits
  5. 11 Mar, 2016 2 commits
    • Matt Caswell's avatar
      Remove some dead code from 1999 · c3caf760
      Matt Caswell authored
      
      
      Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
      c3caf760
    • Matt Caswell's avatar
      Don't clobber the last error · 81161070
      Matt Caswell authored
      
      
      On Windows we call WSAGetLastError() to find out the last error that
      happened on a socket operation. We use this to find out whether we can
      retry the operation or not. You are supposed to call this immediately
      however in a couple of places we logged an error first. This can end up
      making other Windows system calls to get the thread local error state.
      Sometimes that can clobber the error code, so if you call WSAGetLastError()
      later on you get a spurious response and the socket operation looks like
      a fatal error.
      
      Really we shouldn't be logging an error anyway if its a retryable issue.
      Otherwise we could end up with stale errors on the error queue.
      
      Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
      81161070