1. 30 Aug, 2016 1 commit
  2. 29 Aug, 2016 1 commit
  3. 28 Aug, 2016 4 commits
  4. 27 Aug, 2016 2 commits
  5. 26 Aug, 2016 7 commits
  6. 25 Aug, 2016 5 commits
  7. 23 Aug, 2016 1 commit
    • Ales Novak's avatar
      ftp: fix wrong poll on the secondary socket · 7ad50a61
      Ales Novak authored
      
      
      When we're uploading using FTP and the server issues a tiny pause
      between opening the connection to the client's secondary socket, the
      client's initial poll() times out, which leads to second poll() which
      does not wait for POLLIN on the secondary socket. So that poll() also
      has to time out, creating a long (200ms) pause.
      
      This patch adds the correct flag to the secondary socket, making the
      second poll() correctly wait for the connection there too.
      
      Signed-off-by: default avatarAles Novak <alnovak@suse.cz>
      
      Closes #978
      7ad50a61
  8. 22 Aug, 2016 1 commit
  9. 21 Aug, 2016 6 commits
  10. 20 Aug, 2016 9 commits
  11. 19 Aug, 2016 2 commits
  12. 18 Aug, 2016 1 commit
    • Steve Holme's avatar
      vauth: Introduced Curl_auth_is_<mechansism>_supported() functions · a0f21294
      Steve Holme authored
      As Windows SSPI authentication calls fail when a particular mechanism
      isn't available, introduced these functions for DIGEST, NTLM, Kerberos 5
      and Negotiate to allow both HTTP and SASL authentication the opportunity
      to query support for a supported mechanism before selecting it.
      
      For now each function returns TRUE to maintain compatability with the
      existing code when called.
      a0f21294