1. 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
  2. 23 Aug, 2007 1 commit
  3. 01 Jul, 2007 1 commit
  4. 30 Jun, 2007 1 commit
  5. 27 Jun, 2007 1 commit
  6. 08 May, 2007 1 commit
  7. 20 Apr, 2007 1 commit
  8. 20 Feb, 2007 1 commit
  9. 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
  10. 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
  11. 08 Jan, 2007 1 commit
  12. 05 Jan, 2007 1 commit
  13. 02 Nov, 2006 1 commit
  14. 21 Oct, 2006 1 commit
  15. 30 Sep, 2006 1 commit
  16. 11 Sep, 2006 1 commit
  17. 03 Sep, 2006 1 commit
  18. 29 Aug, 2006 2 commits
  19. 04 Aug, 2006 2 commits
  20. 25 Jul, 2006 1 commit
  21. 11 Jul, 2006 1 commit
  22. 24 Jun, 2006 1 commit
  23. 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
  24. 12 Jun, 2006 1 commit
  25. 26 Apr, 2006 1 commit
  26. 19 Apr, 2006 1 commit
  27. 09 Apr, 2006 1 commit
  28. 07 Apr, 2006 1 commit
  29. 21 Mar, 2006 1 commit
  30. 14 Mar, 2006 1 commit
  31. 11 Feb, 2006 1 commit
  32. 30 Jan, 2006 1 commit
  33. 20 Dec, 2005 1 commit
  34. 12 Dec, 2005 1 commit
  35. 28 Nov, 2005 1 commit
  36. 04 Sep, 2005 1 commit
  37. 02 Sep, 2005 1 commit
  38. 24 Aug, 2005 1 commit
    • Daniel Stenberg's avatar
      Toby Peterson added CURLOPT_IGNORE_CONTENT_LENGTH to the library, accessible · a4773fcb
      Daniel Stenberg authored
      from the command line tool with --ignore-content-length. This will make it
      easier to download files from Apache 1.x (and similar) servers that are
      still having problems serving files larger than 2 or 4 GB. When this option
      is enabled, curl will simply have to wait for the server to close the
      connection to signal end of transfer. I wrote test case 269 that runs a
      simple test that this works.
      a4773fcb