1. 11 Feb, 2006 2 commits
  2. 07 Feb, 2006 1 commit
  3. 01 Feb, 2006 1 commit
  4. 30 Jan, 2006 2 commits
  5. 29 Jan, 2006 1 commit
  6. 24 Jan, 2006 1 commit
    • Daniel Stenberg's avatar
      Michal Marek provided a patch for FTP that makes libcurl continue to try PASV · 67bf4f28
      Daniel Stenberg authored
      even after EPSV returned a positive response code, if libcurl failed to
      connect to the port number the EPSV response said. Obviously some people are
      going through protocol-sensitive firewalls (or similar) that don't understand
      EPSV and then they don't allow the second connection unless PASV was
      used. This also called for a minor fix of test case 238.
      67bf4f28
  7. 20 Jan, 2006 1 commit
  8. 19 Jan, 2006 1 commit
  9. 18 Jan, 2006 2 commits
  10. 16 Jan, 2006 1 commit
  11. 15 Jan, 2006 1 commit
  12. 13 Jan, 2006 1 commit
  13. 12 Jan, 2006 1 commit
  14. 10 Jan, 2006 1 commit
    • Daniel Stenberg's avatar
      When using a bad path over FTP, as in when libcurl couldn't CWD into all · 44313386
      Daniel Stenberg authored
      given subdirs, libcurl would still "remember" the full path as if it is the
      current directory libcurl is in so that the next curl_easy_perform() would
      get really confused if it tried the same path again - as it would not issue
      any CWD commands at all, assuming it is already in the "proper" dir.
      
      Starting now, a failed CWD command sets a flag that prevents the path to be
      "remembered" after returning.
      44313386
  15. 08 Jan, 2006 1 commit
  16. 07 Jan, 2006 1 commit
  17. 06 Jan, 2006 1 commit
  18. 04 Jan, 2006 1 commit
  19. 16 Dec, 2005 1 commit
  20. 06 Dec, 2005 2 commits
  21. 01 Dec, 2005 1 commit
  22. 28 Nov, 2005 1 commit
  23. 24 Nov, 2005 1 commit
  24. 17 Nov, 2005 1 commit
  25. 16 Nov, 2005 1 commit
  26. 13 Nov, 2005 2 commits
  27. 12 Nov, 2005 1 commit
  28. 11 Nov, 2005 1 commit
  29. 10 Nov, 2005 3 commits
  30. 08 Nov, 2005 2 commits
  31. 05 Nov, 2005 1 commit
  32. 31 Oct, 2005 1 commit
    • Daniel Stenberg's avatar
      Vilmos Nebehaj improved libcurl's LDAP abilities: · b91421b1
      Daniel Stenberg authored
      The LDAP code in libcurl can't handle LDAP servers of LDAPv3 nor binary
      attributes in LDAP objects. So, I made a quick patch to address these
      problems.
      
      The solution is simple: if we connect to an LDAP server, first try LDAPv3
      (which is the preferred protocol as of now) and then fall back to LDAPv2.
      In case of binary attributes, we first convert them to base64, just like the
      openldap client does. It uses ldap_get_values_len() instead of
      ldap_get_values() to be able to retrieve binary attributes correctly. I
      defined the necessary LDAP macros in lib/ldap.c to be able to compile
      libcurl without the presence of libldap
      b91421b1