Skip to content
Snippets Groups Projects
  1. Jan 25, 2010
  2. Jan 22, 2010
  3. Jan 06, 2010
  4. Dec 30, 2009
  5. Sep 15, 2009
  6. Sep 11, 2009
  7. Apr 21, 2009
  8. Apr 14, 2009
  9. Jan 31, 2009
  10. Nov 06, 2008
  11. Nov 01, 2008
  12. Oct 10, 2008
  13. Sep 29, 2008
  14. Sep 24, 2008
  15. Aug 20, 2008
  16. Jul 09, 2008
  17. Apr 29, 2008
  18. Nov 07, 2007
  19. Oct 20, 2007
  20. Oct 03, 2007
  21. Sep 27, 2007
  22. Jun 11, 2007
  23. May 31, 2007
  24. Mar 27, 2007
  25. Feb 26, 2007
  26. Feb 16, 2007
  27. 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
  28. Oct 17, 2006
  29. Jul 25, 2006
  30. Jul 24, 2006
  31. Jul 21, 2006
  32. Jul 11, 2006
  33. May 05, 2006
  34. May 04, 2006
    • Daniel Stenberg's avatar
      Roland Blom filed bug report #1481217 · e85e3054
      Daniel Stenberg authored
      (http://curl.haxx.se/bug/view.cgi?id=1481217), with follow-ups by Michele Bini
      and David Byron. libcurl previously wrongly used GetLastError() on windows to
      get error details after socket-related function calls, when it really should
      use WSAGetLastError() instead.
      
      When changing to this, the former function Curl_ourerrno() is now instead
      called Curl_sockerrno() as it is necessary to only use it to get errno from
      socket-related functions as otherwise it won't work as intended on Windows.
      e85e3054
Loading