1. 30 Jan, 2006 2 commits
  2. 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
  3. 19 Jan, 2006 2 commits
  4. 18 Jan, 2006 2 commits
  5. 16 Jan, 2006 1 commit
  6. 15 Jan, 2006 1 commit
  7. 13 Jan, 2006 1 commit
  8. 12 Jan, 2006 2 commits
  9. 10 Jan, 2006 2 commits
  10. 07 Jan, 2006 1 commit
  11. 06 Jan, 2006 1 commit
  12. 04 Jan, 2006 1 commit
  13. 16 Dec, 2005 1 commit
  14. 06 Dec, 2005 1 commit
  15. 01 Dec, 2005 1 commit
  16. 24 Nov, 2005 1 commit
  17. 17 Nov, 2005 1 commit
  18. 16 Nov, 2005 1 commit
  19. 14 Nov, 2005 2 commits
  20. 13 Nov, 2005 2 commits
  21. 12 Nov, 2005 1 commit
  22. 11 Nov, 2005 1 commit
  23. 10 Nov, 2005 2 commits
  24. 08 Nov, 2005 2 commits
    • Daniel Stenberg's avatar
      Removed the use of AI_CANONNAME in the IPv6-enabled resolver functions since · cab59b4c
      Daniel Stenberg authored
      we really have no use for reverse lookups of the address.
      
      I truly hope these are the last reverse lookups we had lingering in the
      code!
      cab59b4c
    • Daniel Stenberg's avatar
      Dmitry Bartsevich discovered some issues in compatibilty of SSPI-enabled · 17533580
      Daniel Stenberg authored
      version of libcurl with different Windows versions. Current version of
      libcurl imports SSPI functions from secur32.dll. However, under Windows NT
      4.0 these functions are located in security.dll, under Windows 9x - in
      secur32.dll and Windows 2000 and XP contains both these DLLs (security.dll
      just forwards calls to secur32.dll).
      
      Dmitry's patch loads proper library dynamically depending on Windows
      version. Function InitSecurityInterface() is used to obtain pointers to all
      of SSPI function in one structure.
      : ----------------------------------------------------------------------
      17533580
  25. 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
  26. 27 Oct, 2005 3 commits
  27. 25 Oct, 2005 1 commit
  28. 22 Oct, 2005 1 commit
    • Daniel Stenberg's avatar
      Dima Barsky reported a problem with GnuTLS-enabled libcurl in bug report · c890149c
      Daniel Stenberg authored
        #1334338 (http://curl.haxx.se/bug/view.cgi?id=1334338). When reading an SSL
        stream from a server and the server requests a "rehandshake", the current
        code simply returns this as an error. I have no good way to test this, but
        I've added a crude attempt of dealing with this situation slightly better -
        it makes a blocking handshake if this happens. Done like this because fixing
        this the "proper" way (that would handshake asynchronously) will require
        quite some work and I really need a good way to test this to do such a
        change.
      c890149c
  29. 21 Oct, 2005 1 commit