1. 09 May, 2005 1 commit
  2. 06 May, 2005 1 commit
  3. 02 May, 2005 2 commits
  4. 29 Apr, 2005 1 commit
  5. 26 Apr, 2005 1 commit
  6. 23 Apr, 2005 1 commit
  7. 18 Apr, 2005 1 commit
  8. 12 Apr, 2005 1 commit
  9. 10 Apr, 2005 1 commit
  10. 07 Apr, 2005 1 commit
  11. 05 Apr, 2005 1 commit
  12. 04 Apr, 2005 1 commit
  13. 03 Apr, 2005 1 commit
  14. 30 Mar, 2005 1 commit
  15. 29 Mar, 2005 2 commits
  16. 18 Mar, 2005 1 commit
  17. 16 Mar, 2005 1 commit
  18. 14 Mar, 2005 1 commit
  19. 12 Mar, 2005 2 commits
  20. 09 Mar, 2005 1 commit
  21. 08 Mar, 2005 1 commit
  22. 04 Mar, 2005 5 commits
  23. 03 Mar, 2005 2 commits
  24. 18 Feb, 2005 2 commits
  25. 16 Feb, 2005 1 commit
    • Daniel Stenberg's avatar
      Christopher R. Palmer reported a problem with HTTP-POSTing using "anyauth" · ac022b2e
      Daniel Stenberg authored
      that picks NTLM. Thanks to David Byron letting me test NTLM against his
      servers, I could quickly repeat and fix the problem. It turned out to be:
      
      When libcurl POSTs without knowing/using an authentication and it gets back a
      list of types from which it picks NTLM, it needs to either continue sending
      its data if it keeps the connection alive, or not send the data but close the
      connection. Then do the first step in the NTLM auth. libcurl didn't send the
      data nor close the connection but simply read the response-body and then sent
      the first negotiation step. Which then failed miserably of course. The fixed
      version forces a connection if there is more than 2000 bytes left to send.
      ac022b2e
  26. 11 Feb, 2005 1 commit
  27. 10 Feb, 2005 1 commit
  28. 01 Feb, 2005 2 commits
  29. 28 Jan, 2005 1 commit
  30. 25 Jan, 2005 1 commit
    • Daniel Stenberg's avatar
      Ian Ford asked about support for the FTP command ACCT, and I discovered it is · 177dbc7b
      Daniel Stenberg authored
      present in RFC959... so now (lib)curl supports it as well. --ftp-account and
      CURLOPT_FTP_ACCOUNT set the account string. (The server may ask for an account
      string after PASS have been sent away. The client responds with "ACCT [account
      string]".) Added test case 228 and 229 to verify the functionality. Updated
      the test FTP server to support ACCT somewhat.
      177dbc7b