1. 09 Sep, 2016 3 commits
  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 1 commit
    • Jay Satiro's avatar
      schannel: Disable ALPN for Wine since it is causing problems · 895168bf
      Jay Satiro authored
      - Disable ALPN on Wine.
      
      - Don't pass input secbuffer when ALPN is disabled.
      
      When ALPN support was added a change was made to pass an input secbuffer
      to initialize the context. When ALPN is enabled the buffer contains the
      ALPN information, and when it's disabled the buffer is empty. In either
      case this input buffer caused problems with Wine and connections would
      not complete.
      
      Bug: https://github.com/curl/curl/issues/983
      Reported-by: Christian Fillion
      895168bf