Skip to content
  1. Jan 18, 2006
  2. Jan 16, 2006
  3. Jan 15, 2006
  4. Jan 13, 2006
  5. Jan 12, 2006
  6. Jan 10, 2006
  7. Jan 07, 2006
  8. Jan 06, 2006
  9. Jan 04, 2006
  10. Dec 16, 2005
  11. Dec 06, 2005
  12. Dec 01, 2005
  13. Nov 24, 2005
  14. Nov 17, 2005
  15. Nov 16, 2005
  16. Nov 14, 2005
  17. Nov 13, 2005
  18. Nov 12, 2005
  19. Nov 11, 2005
  20. Nov 10, 2005
  21. Nov 08, 2005
    • 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
  22. Oct 31, 2005
    • 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
  23. Oct 27, 2005
  24. Oct 25, 2005
  25. Oct 22, 2005
    • 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
  26. Oct 21, 2005
  27. Oct 20, 2005
  28. Oct 14, 2005