1. 25 Jun, 2007 2 commits
  2. 30 May, 2007 1 commit
  3. 08 May, 2007 1 commit
  4. 20 Apr, 2007 1 commit
  5. 16 Apr, 2007 1 commit
  6. 11 Apr, 2007 1 commit
  7. 20 Feb, 2007 1 commit
  8. 12 Feb, 2007 2 commits
  9. 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
  10. 30 Jan, 2007 1 commit
  11. 08 Jan, 2007 1 commit
  12. 05 Jan, 2007 1 commit
  13. 02 Nov, 2006 1 commit
  14. 30 Oct, 2006 2 commits
  15. 21 Oct, 2006 1 commit
  16. 12 Oct, 2006 1 commit
    • Daniel Stenberg's avatar
      Jeff Pohlmeyer has been working with the hiperfifo.c example source code, · b61c0638
      Daniel Stenberg authored
      and while doing so it became apparent that the current timeout system for
      the socket API really was a bit awkward since it become quite some work to
      be sure we have the correct timeout set.
      
      Jeff then provided the new CURLMOPT_TIMERFUNCTION that is yet another
      callback the app can set to get to know when the general timeout time
      changes and thus for an application like hiperfifo.c it makes everything a
      lot easier and nicer. There's a CURLMOPT_TIMERDATA option too of course in
      good old libcurl tradition.
      b61c0638
  17. 30 Sep, 2006 1 commit
  18. 11 Sep, 2006 1 commit
  19. 07 Sep, 2006 1 commit
  20. 04 Sep, 2006 1 commit
  21. 03 Sep, 2006 1 commit
  22. 29 Aug, 2006 2 commits
  23. 11 Aug, 2006 1 commit
  24. 04 Aug, 2006 3 commits
  25. 03 Aug, 2006 1 commit
  26. 30 Jul, 2006 1 commit
  27. 26 Jul, 2006 1 commit
  28. 25 Jul, 2006 1 commit
  29. 11 Jul, 2006 1 commit
  30. 05 Jul, 2006 1 commit
  31. 24 Jun, 2006 1 commit
  32. 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
  33. 12 Jun, 2006 2 commits