1. 13 Nov, 2005 2 commits
  2. 12 Nov, 2005 1 commit
  3. 11 Nov, 2005 1 commit
  4. 10 Nov, 2005 3 commits
  5. 08 Nov, 2005 2 commits
  6. 05 Nov, 2005 1 commit
  7. 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
  8. 29 Oct, 2005 1 commit
  9. 27 Oct, 2005 2 commits
  10. 25 Oct, 2005 1 commit
  11. 21 Oct, 2005 2 commits
  12. 20 Oct, 2005 2 commits
  13. 14 Oct, 2005 1 commit
  14. 13 Oct, 2005 2 commits
  15. 06 Oct, 2005 1 commit
  16. 05 Oct, 2005 1 commit
  17. 04 Oct, 2005 1 commit
  18. 30 Sep, 2005 1 commit
  19. 27 Sep, 2005 3 commits
  20. 19 Sep, 2005 1 commit
  21. 16 Sep, 2005 1 commit
  22. 06 Sep, 2005 1 commit
  23. 04 Sep, 2005 1 commit
  24. 01 Sep, 2005 1 commit
  25. 31 Aug, 2005 1 commit
  26. 29 Aug, 2005 4 commits
  27. 24 Aug, 2005 1 commit
    • Daniel Stenberg's avatar
      Toby Peterson added CURLOPT_IGNORE_CONTENT_LENGTH to the library, accessible · a4773fcb
      Daniel Stenberg authored
      from the command line tool with --ignore-content-length. This will make it
      easier to download files from Apache 1.x (and similar) servers that are
      still having problems serving files larger than 2 or 4 GB. When this option
      is enabled, curl will simply have to wait for the server to close the
      connection to signal end of transfer. I wrote test case 269 that runs a
      simple test that this works.
      a4773fcb