1. 08 Dec, 2008 2 commits
    • Daniel Stenberg's avatar
      - Fred Machado posted about a weird FTP problem on the curl-users list and when · 18371aaf
      Daniel Stenberg authored
        researching it, it turned out he got a 550 response back from a SIZE command
        and then I fell over the text in RFC3659 that says:
      
         The presence of the 550 error response to a SIZE command MUST NOT be taken
         by the client as an indication that the file cannot be transferred in the
         current MODE and TYPE.
      
        In other words: the change I did on September 30th 2008 and that has been
        included in the last two releases were a regression and a bad idea. We MUST
        NOT take a 550 response from SIZE as a hint that the file doesn't exist.
      18371aaf
    • Daniel Stenberg's avatar
      - Christian Krause filed bug #2221237 · 42365aa7
      Daniel Stenberg authored
        (http://curl.haxx.se/bug/view.cgi?id=2221237) that identified an infinite
        loop during GSS authentication given some specific conditions. With his
        patience and great feedback I managed to narrow down the problem and
        eventually fix it although I can't test any of this myself!
      42365aa7
  2. 03 Dec, 2008 2 commits
  3. 24 Nov, 2008 1 commit
    • Daniel Stenberg's avatar
      - Based on a patch by Vlad Grachov, libcurl now uses a new libssh2 0.19 · 53a8a6e5
      Daniel Stenberg authored
        function when built to support SCP and SFTP that helps the library to know
        in which direction a particular libssh2 operation would return EAGAIN so
        that libcurl knows what socket conditions to wait for before trying the
        function call again. Previously (and still when using libssh2 0.18 or
        earlier), libcurl will busy-loop in this situation when the easy interface
        is used!
      53a8a6e5
  4. 19 Nov, 2008 3 commits
  5. 16 Nov, 2008 1 commit
  6. 15 Nov, 2008 1 commit
  7. 13 Nov, 2008 2 commits
  8. 11 Nov, 2008 2 commits
    • Daniel Stenberg's avatar
      - Rainer Canavan filed bug #2255627 · 4cbc0f6c
      Daniel Stenberg authored
        (http://curl.haxx.se/bug/view.cgi?id=2255627) which pointed out that a
        program using libcurl's multi interface to download a HTTPS page with a
        libcurl built powered by OpenSSL, would easily get silly and instead hand
        over SSL details as data instead of the actual HTTP headers and body. This
        happened because libcurl would consider the connection handshake done too
        early. This problem was introduced at September 22nd 2008 with my fix of the
        bug #2107377
      
        The correct fix is now instead done within the GnuTLS-handling code, as both
        the OpenSSL and the NSS code already deal with this situation in similar
        fashion. I added test case 560 in an attempt to verify this fix, but
        unfortunately it didn't trigger it even before this fix!
      4cbc0f6c
    • Yang Tse's avatar
      Related with bug #2230535 (http://curl.haxx.se/bug/view.cgi?id=2230535) · 707828b7
      Yang Tse authored
      Daniel Fandrich noticed that curl_addrinfo was also missing in the build
      process of other four non-configure platforms. Added now.
      707828b7
  9. 07 Nov, 2008 2 commits
  10. 06 Nov, 2008 1 commit
  11. 05 Nov, 2008 1 commit
  12. 04 Nov, 2008 2 commits
  13. 03 Nov, 2008 1 commit
  14. 01 Nov, 2008 1 commit
  15. 29 Oct, 2008 1 commit
  16. 22 Oct, 2008 1 commit
  17. 16 Oct, 2008 1 commit
  18. 15 Oct, 2008 2 commits
    • Daniel Stenberg's avatar
      - Pascal Terjan filed bug #2154627 · a579d670
      Daniel Stenberg authored
        (http://curl.haxx.se/bug/view.cgi?id=2154627) which pointed out that libcurl
        uses strcasecmp() in multiple places where it causes failures when the
        Turkish locale is used. This is because 'i' and 'I' isn't the same letter so
        strcasecmp() on those letters are different in Turkish than in English (or
        just about all other languages). I thus introduced a totally new internal
        function in libcurl (called Curl_ascii_equal) for doing case insentive
        comparisons for english-(ascii?) style strings that thus will make "file"
        and "FILE" match even if the Turkish locale is selected.
      a579d670
    • Daniel Stenberg's avatar
      credit to John Wilkinson · 16678901
      Daniel Stenberg authored
      16678901
  19. 09 Oct, 2008 1 commit
  20. 08 Oct, 2008 3 commits
  21. 07 Oct, 2008 3 commits
  22. 30 Sep, 2008 1 commit
    • Daniel Stenberg's avatar
      - The libcurl FTP code now returns CURLE_REMOTE_FILE_NOT_FOUND error when SIZE · 038542ea
      Daniel Stenberg authored
        gets a 550 response back for the cases where a download (or NOBODY) is
        wanted. It still allows a 550 as response if the SIZE is used as part of an
        upload process (like if resuming an upload is requested and the file isn't
        there before the upload). I also modified the FTP test server and a few test
        cases accordingly to match this modified behavior.
      038542ea
  23. 29 Sep, 2008 4 commits
  24. 25 Sep, 2008 1 commit