Skip to content
Snippets Groups Projects
  1. Feb 12, 2007
    • 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
  2. Feb 05, 2007
    • 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
  3. Jan 17, 2007
  4. Jan 05, 2007
  5. Dec 21, 2006
  6. Dec 05, 2006
  7. Nov 02, 2006
  8. Oct 25, 2006
    • Daniel Stenberg's avatar
      Fixed CURLOPT_FAILONERROR to return CURLE_HTTP_RETURNED_ERROR even for the · cde5e35d
      Daniel Stenberg authored
      case when 401 or 407 are returned, *IF* no auth credentials have been given.
      The CURLOPT_FAILONERROR option is not possible to make fool-proof for 401
      and 407 cases when auth credentials is given, but we've now covered this
      somewhat more.
      
      You might get some amounts of headers transferred before this situation is
      detected, like for when a "100-continue" is received as a response to a
      POST/PUT and a 401 or 407 is received immediately afterwards.
      
      Added test 281 to verify this change.
      cde5e35d
  9. Sep 30, 2006
  10. Sep 26, 2006
  11. Sep 11, 2006
  12. Sep 08, 2006
  13. Aug 29, 2006
  14. Aug 23, 2006
  15. Aug 09, 2006
  16. Aug 08, 2006
  17. Aug 02, 2006
  18. Jul 25, 2006
  19. Jun 22, 2006
    • 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
  20. Jun 20, 2006
  21. May 24, 2006
  22. Apr 19, 2006
  23. Apr 09, 2006
  24. Mar 14, 2006
  25. Mar 02, 2006
  26. Feb 21, 2006
  27. Feb 11, 2006
  28. Jan 30, 2006
  29. Jan 27, 2006
  30. Jan 09, 2006
  31. Jan 08, 2006
  32. Jan 03, 2006
  33. Dec 10, 2005
  34. Nov 17, 2005
  35. Nov 11, 2005
  36. Oct 27, 2005
  37. Oct 13, 2005
  38. Sep 22, 2005
  39. Sep 21, 2005
Loading