1. 05 Apr, 2005 1 commit
  2. 04 Apr, 2005 1 commit
  3. 03 Apr, 2005 1 commit
  4. 30 Mar, 2005 1 commit
  5. 29 Mar, 2005 2 commits
  6. 22 Mar, 2005 1 commit
  7. 16 Mar, 2005 2 commits
    • Daniel Stenberg's avatar
      more · b5d97b3d
      Daniel Stenberg authored
      b5d97b3d
    • Daniel Stenberg's avatar
      - Tru64 and some IRIX boxes seem to not like test 237 as it is. Their · 61133545
      Daniel Stenberg authored
        inet_addr() functions seems to use &255 on all numericals in a ipv4 dotted
        address which makes a different failure... Now I've modified the ipv4
        resolve code to use inet_pton() instead in an attempt to make these systems
        better detect this as a bad IP address rather than creating a toally bogus
        address that is then passed on and used.
      61133545
  8. 15 Mar, 2005 1 commit
  9. 14 Mar, 2005 1 commit
  10. 12 Mar, 2005 1 commit
  11. 11 Mar, 2005 1 commit
  12. 10 Mar, 2005 1 commit
  13. 09 Mar, 2005 1 commit
  14. 08 Mar, 2005 1 commit
  15. 07 Mar, 2005 1 commit
  16. 04 Mar, 2005 4 commits
  17. 03 Mar, 2005 1 commit
  18. 18 Feb, 2005 2 commits
  19. 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
  20. 11 Feb, 2005 1 commit
  21. 10 Feb, 2005 1 commit
  22. 09 Feb, 2005 2 commits
  23. 08 Feb, 2005 1 commit
  24. 04 Feb, 2005 1 commit
  25. 01 Feb, 2005 1 commit
  26. 30 Jan, 2005 1 commit
  27. 29 Jan, 2005 3 commits
  28. 28 Jan, 2005 3 commits
  29. 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