1. 09 Oct, 2008 1 commit
  2. 08 Oct, 2008 5 commits
  3. 07 Oct, 2008 3 commits
  4. 01 Oct, 2008 1 commit
  5. 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
  6. 29 Sep, 2008 5 commits
  7. 25 Sep, 2008 2 commits
  8. 24 Sep, 2008 1 commit
  9. 23 Sep, 2008 2 commits
  10. 22 Sep, 2008 3 commits
  11. 20 Sep, 2008 1 commit
  12. 19 Sep, 2008 2 commits
  13. 18 Sep, 2008 1 commit
  14. 17 Sep, 2008 2 commits
  15. 13 Sep, 2008 1 commit
  16. 12 Sep, 2008 1 commit
  17. 10 Sep, 2008 2 commits
  18. 09 Sep, 2008 1 commit
  19. 08 Sep, 2008 2 commits
  20. 05 Sep, 2008 3 commits
    • Dan Fandrich's avatar
      Improved the logic the decides whether to use HTTP 1.1 features or not in a · 91ff9380
      Dan Fandrich authored
      request.
      
      Detect cases where an upload must be sent chunked and the server supports
      only HTTP 1.0 and return CURLE_UPLOAD_FAILED.
      91ff9380
    • Daniel Stenberg's avatar
      - Martin Drasar provided the CURLOPT_POSTREDIR patch. It renames · 18110b51
      Daniel Stenberg authored
        CURLOPT_POST301 (but adds a define for backwards compatibility for you who
        don't define CURL_NO_OLDIES). This option allows you to now also change the
        libcurl behavior for a HTTP response 302 after a POST to not use GET in the
        subsequent request (when CURLOPT_FOLLOWLOCATION is enabled). I edited the
        patch somewhat before commit. The curl tool got a matching --post302
        option. Test case 1076 was added to verify this.
      18110b51
    • Daniel Stenberg's avatar
      - Introducing CURLOPT_CERTINFO and the corresponding CURLINFO_CERTINFO. By · 4c976856
      Daniel Stenberg authored
        enabling this feature with CURLOPT_CERTINFO for a request using SSL (HTTPS
        or FTPS), libcurl will gather lots of server certificate info and that info
        can then get extracted by a client after the request has completed with
        curl_easy_getinfo()'s CURLINFO_CERTINFO option. Linus Nielsen Feltzing
        helped me test and smoothen out this feature.
      
        Unfortunately, this feature currently only works with libcurl built to use
        OpenSSL.
      
        This feature was sponsored by networking4all.com - thanks!
      4c976856