1. 15 Oct, 2007 1 commit
  2. 06 Oct, 2007 1 commit
  3. 03 Oct, 2007 4 commits
  4. 26 Sep, 2007 1 commit
    • Daniel Stenberg's avatar
      Philip Langdale provided the new CURLOPT_POST301 option for · fd4cf78f
      Daniel Stenberg authored
      curl_easy_setopt() that alters how libcurl functions when following
      redirects. It makes libcurl obey the RFC2616 when a 301 response is received
      after a non-GET request is made. Default libcurl behaviour is to change
      method to GET in the subsequent request (like it does for response code 302
      - because that's what many/most browsers do), but with this CURLOPT_POST301
      option enabled it will do what the spec says and do the next request using
      the same method again. I.e keep POST after 301.
      
      The curl tool got this option as --post301
      
      Test case 1011 and 1012 were added to verify.
      fd4cf78f
  5. 31 Aug, 2007 1 commit
  6. 30 Aug, 2007 1 commit
    • Dan Fandrich's avatar
      Renamed several libcurl error codes and options to make them more general · 9f44a955
      Dan Fandrich authored
      and allow reuse by multiple protocols. Several unused error codes were
      removed.  In all cases, macros were added to preserve source (and binary)
      compatibility with the old names.  These macros are subject to removal at
      a future date, but probably not before 2009.  An application can be
      tested to see if it is using any obsolete code by compiling it with the
      CURL_NO_OLDIES macro defined.
      
      Documented some newer error codes in libcurl-error(3)
      9f44a955
  7. 23 Aug, 2007 1 commit
  8. 01 Jul, 2007 1 commit
  9. 30 Jun, 2007 1 commit
  10. 27 Jun, 2007 1 commit
  11. 08 May, 2007 1 commit
  12. 20 Apr, 2007 1 commit
  13. 20 Feb, 2007 1 commit
  14. 12 Feb, 2007 1 commit
    • Daniel Stenberg's avatar
      - Shmulik Regev fixed so that the final CRLF of HTTP response headers are sent · 28b932fb
      Daniel Stenberg authored
        to the debug callback.
      
      - Shmulik Regev added CURLOPT_HTTP_CONTENT_DECODING and
        CURLOPT_HTTP_TRANSFER_DECODING that if set to zero will disable libcurl's
        internal decoding of content or transfer encoded content. This may be
        preferable in cases where you use libcurl for proxy purposes or similar. The
        command line tool got a --raw option to disable both at once.
      28b932fb
  15. 05 Feb, 2007 1 commit
    • Daniel Stenberg's avatar
      - Michael Wallner provided a patch that adds support for CURLOPT_TIMEOUT_MS · 91386937
      Daniel Stenberg authored
        and CURLOPT_CONNECTTIMEOUT_MS that, as their names should hint, do the
        timeouts with millisecond resolution instead. The only restriction to that
        is the alarm() (sometimes) used to abort name resolves as that uses full
        seconds. I fixed the FTP response timeout part of the patch.
      
        Internally we now count and keep the timeouts in milliseconds but it also
        means we multiply set timeouts with 1000. The effect of this is that no
        timeout can be set to more than 2^31 milliseconds (on 32 bit systems), which
        equals 24.86 days.  We probably couldn't before either since the code did
        *1000 on the timeout values on several places already.
      91386937
  16. 08 Jan, 2007 1 commit
  17. 05 Jan, 2007 1 commit
  18. 02 Nov, 2006 1 commit
  19. 21 Oct, 2006 1 commit
  20. 30 Sep, 2006 1 commit
  21. 11 Sep, 2006 1 commit
  22. 03 Sep, 2006 1 commit
  23. 29 Aug, 2006 2 commits
  24. 04 Aug, 2006 2 commits
  25. 25 Jul, 2006 1 commit
  26. 11 Jul, 2006 1 commit
  27. 24 Jun, 2006 1 commit
  28. 22 Jun, 2006 1 commit
    • Daniel Stenberg's avatar
      Peter Silva introduced CURLOPT_MAX_SEND_SPEED_LARGE and · dfe1884c
      Daniel Stenberg authored
      CURLOPT_MAX_RECV_SPEED_LARGE that limit tha maximum rate libcurl is allowed
      to send or receive data. This kind of adds the the command line tool's
      option --limit-rate to the library.
      
      The rate limiting logic in the curl app is now removed and is instead
      provided by libcurl itself. Transfer rate limiting will now also work for -d
      and -F, which it didn't before.
      dfe1884c
  29. 12 Jun, 2006 1 commit
  30. 26 Apr, 2006 1 commit
  31. 19 Apr, 2006 1 commit
  32. 09 Apr, 2006 1 commit
  33. 07 Apr, 2006 1 commit
  34. 21 Mar, 2006 1 commit
  35. 14 Mar, 2006 1 commit