Skip to content
Snippets Groups Projects
  1. Dec 17, 2020
  2. Oct 10, 2020
  3. Sep 29, 2020
  4. Sep 27, 2020
  5. Sep 23, 2020
  6. Sep 22, 2020
  7. Sep 09, 2020
  8. Aug 09, 2020
  9. May 29, 2020
  10. Mar 04, 2020
  11. Jan 29, 2019
  12. Oct 24, 2017
  13. Sep 30, 2017
    • Nat Goodspeed's avatar
      MAINT-7081: Eliminate unused variable errors after new refactoring. · 6b508cd9
      Nat Goodspeed authored
      The new helper functions check_curl_easy_setopt() and
      check_curl_multi_setopt() encapsulate the pervasive idiom:
      
          code = curl_{easy,multi}_setopt(handle, option, arg);
          check_curl_{easy,multi}_code(code, option);
      
      But since each of these helper functions contains its own local CURL{,M}code
      variable 'code', having a caller-scope variable reused for every such call is
      no longer necessary -- in fact is no longer used at all. That produces a fatal
      warning with MSVC. Get rid of those now-unused variables.
      6b508cd9
  14. Sep 29, 2017
  15. Aug 14, 2017
  16. Aug 08, 2017
  17. Jul 28, 2017
  18. Jul 24, 2017
  19. Dec 13, 2016
  20. Feb 19, 2016
  21. Nov 10, 2015
  22. Oct 16, 2015
  23. Aug 12, 2015
  24. Jul 08, 2015
  25. Jun 24, 2015
  26. Jun 05, 2015
  27. May 27, 2015
  28. Apr 10, 2015
  29. Apr 01, 2015
  30. Mar 27, 2015
  31. Mar 16, 2015
  32. Nov 06, 2014
    • Monty Brandenberg's avatar
      BUG-7698, BUG-7688, BUG-7694 (others) CDN connection issues. · de9689e3
      Monty Brandenberg authored
      Under pipelining, requests were given a 5x timeout factor due to the
      way that the timeout clock works in libcurl.  Under CDN load,
      connections were not being torn down quickly and it was only
      this timer that led to disconnect and retry.  So, we want to
      break a connection that isn't making progress but that isn't
      immediately possible.  We'll compromise with a 60S timeout that
      (we hope) will be neither too long for stalled connections nor
      too short for large asset transfer requests.
      de9689e3
  33. Oct 17, 2014
  34. Oct 10, 2014
  35. Sep 19, 2014
  36. Sep 18, 2014
Loading