1. 09 Sep, 2016 1 commit
    • Daniel Stenberg's avatar
      http2: support > 64bit sized uploads · 85033bcf
      Daniel Stenberg authored
      ... by making sure we don't count down the "upload left" counter when the
      uploaded size is unknown and then it can be allowed to continue forever.
      
      Fixes #996
      85033bcf
  2. 08 Sep, 2016 1 commit
  3. 07 Sep, 2016 7 commits
  4. 06 Sep, 2016 3 commits
  5. 05 Sep, 2016 7 commits
  6. 04 Sep, 2016 1 commit
    • Olivier Brunel's avatar
      speed caps: not based on average speeds anymore · 4b86113f
      Olivier Brunel authored
      Speed limits (from CURLOPT_MAX_RECV_SPEED_LARGE &
      CURLOPT_MAX_SEND_SPEED_LARGE) were applied simply by comparing limits
      with the cumulative average speed of the entire transfer; While this
      might work at times with good/constant connections, in other cases it
      can result to the limits simply being "ignored" for more than "short
      bursts" (as told in man page).
      
      Consider a download that goes on much slower than the limit for some
      time (because bandwidth is used elsewhere, server is slow, whatever the
      reason), then once things get better, curl would simply ignore the limit
      up until the average speed (since the beginning of the transfer) reached
      the limit.  This could prove the limit useless to effectively avoid
      using the entire bandwidth (at least for quite some time).
      
      So instead, we now use a "moving starting point" as reference, and every
      time at least as much as the limit as been transferred, we can reset
      this starting point to the current position. This gets a good limiting
      effect that applies to the "current speed" with instant reactivity (in
      case of sudden speed burst).
      
      Closes #971
      4b86113f
  7. 03 Sep, 2016 3 commits
  8. 01 Sep, 2016 2 commits
  9. 31 Aug, 2016 4 commits
  10. 30 Aug, 2016 1 commit
  11. 29 Aug, 2016 1 commit
  12. 28 Aug, 2016 4 commits
  13. 27 Aug, 2016 2 commits
  14. 26 Aug, 2016 3 commits