1. 16 Apr, 2010 4 commits
    • Daniel Stenberg's avatar
      SSL_RECV: EOF is not an error here · 2056ca9f
      Daniel Stenberg authored
      The recent overhaul of the SSL recv function made this treat a
      zero returned from gnutls_record_recv() as an error, and this
      caused our HTTPS test cases to fail. We leave it to upper layer
      code to detect if an EOF is a problem or not.
      2056ca9f
    • Paul Howarth's avatar
      configure: GSSAPI detection on ancient Linux distros · cca192e5
      Paul Howarth authored
      On some ancient distributions such as RHEL-3, <gssapi/gssapi_krb5.h> needs
      to be processed after <gssapi/gssapi.h>, but does not include it itself.
      This patch checks for <gssapi/gssapi.h> first and then includes it
      in the test for <gssapi/gssapi_krb5.h>, resolving the problem.
      
      Without the patch, <gssapi/gssapi_krb5.h> is "present but cannot be
      compiled".
      cca192e5
    • Daniel Stenberg's avatar
      resolvers: no more using AI_CANONNAME · f3d4b17a
      Daniel Stenberg authored
      No resolver anymore needs to use AI_CANONNAME and do reverse
      lookups.  We should work hard to avoid having code that relies on
      it.
      f3d4b17a
    • Daniel Stenberg's avatar
      KRB5: use given host name instead of reverse lookup'ed name · 5bd38b70
      Daniel Stenberg authored
      This code would previously use dns_entry->addr->ai_canonname
      instead of the given host name, which caused us grief and
      problems since not all our resolver options do the reverse lookup
      and I would also guess that it caused problems with KRB5/GSS with
      virtual name-based hosts. Now the host name from the URL is used.
      5bd38b70
  2. 15 Apr, 2010 4 commits
  3. 14 Apr, 2010 5 commits
  4. 13 Apr, 2010 4 commits
  5. 12 Apr, 2010 8 commits
  6. 11 Apr, 2010 2 commits
  7. 10 Apr, 2010 1 commit
  8. 09 Apr, 2010 1 commit
  9. 07 Apr, 2010 1 commit
  10. 06 Apr, 2010 1 commit
  11. 05 Apr, 2010 1 commit
  12. 04 Apr, 2010 3 commits
  13. 02 Apr, 2010 3 commits
  14. 01 Apr, 2010 2 commits
    • Daniel Stenberg's avatar
      fix SFTP download hang · 49f3160d
      Daniel Stenberg authored
      Matt Wixson found and fixed a bug in the SCP/SFTP area where the
      code treated a 0 return code from libssh2 to be the same as
      EAGAIN while in reality it isn't. The problem caused a hang in
      SFTP transfers from a MessageWay server.
      49f3160d
    • Dan Fandrich's avatar
      Fixed misleading test message · e78e5840
      Dan Fandrich authored
      e78e5840