Skip to content
  1. Apr 06, 2018
  2. Apr 04, 2018
  3. Apr 02, 2018
  4. Mar 31, 2018
  5. Mar 27, 2018
  6. Mar 26, 2018
  7. Mar 23, 2018
  8. Mar 22, 2018
  9. Mar 21, 2018
  10. Mar 20, 2018
  11. Mar 19, 2018
  12. Mar 18, 2018
  13. Mar 17, 2018
  14. Mar 16, 2018
    • Daniel Stenberg's avatar
      multi: improved pending transfers handling => improved performance · 7f9ce085
      Daniel Stenberg authored
      When a transfer is requested to get done and it is put in the pending
      queue when limited by number of connections, total or per-host, libcurl
      would previously very aggressively retry *ALL* pending transfers to get
      them transferring. That was very time consuming.
      
      By reducing the aggressiveness in how pending are being retried, we
      waste MUCH less time on putting transfers back into pending again.
      
      Some test cases got a factor 30(!) speed improvement with this change.
      
      Reported-by: Cyril B
      Fixes #2369
      Closes #2383
      7f9ce085
    • Daniel Stenberg's avatar
      pause: when changing pause state, update socket state · 2404aa08
      Daniel Stenberg authored
      Especially unpausing a transfer might have to move the socket back to the
      "currently used sockets" hash to get monitored. Otherwise it would never get
      any more data and get stuck. Easily triggered with pausing using the
      multi_socket API.
      
      Reported-by: Philip Prindeville
      Bug: https://curl.haxx.se/mail/lib-2018-03/0048.html
      Fixes #2393
      Closes #2391
      2404aa08