1. 17 Apr, 2015 5 commits
  2. 16 Apr, 2015 1 commit
  3. 15 Apr, 2015 6 commits
  4. 14 Apr, 2015 1 commit
  5. 13 Apr, 2015 7 commits
  6. 12 Apr, 2015 1 commit
  7. 11 Apr, 2015 1 commit
  8. 09 Apr, 2015 1 commit
  9. 08 Apr, 2015 3 commits
  10. 07 Apr, 2015 1 commit
    • Da-Yoon Chung's avatar
      lib/transfer.c: Remove factor of 8 from sleep time calculation · a9e46749
      Da-Yoon Chung authored
      The factor of 8 is a bytes-to-bits conversion factor, but pkt_size and
      rate_bps are both in bytes. When using the rate limiting option, curl
      waits 8 times too long, and then transfers very quickly until the
      average rate reaches the limit. The average rate follows the limit over
      time, but the actual traffic is bursty.
      
      Thanks-to: Benjamin Gilbert
      a9e46749
  11. 06 Apr, 2015 2 commits
  12. 05 Apr, 2015 2 commits
  13. 03 Apr, 2015 7 commits
  14. 02 Apr, 2015 2 commits
    • Jay Satiro's avatar
      build-openssl.bat: Fix mixed line endings · e2a9ebb3
      Jay Satiro authored
      Use LF not CRLF, throughout.  msysgit will only convert a file to CRLF
      on checkout if it's not mixed.
      e2a9ebb3
    • Jay Satiro's avatar
      cyassl: Fix certificate load check · 0b5efa57
      Jay Satiro authored
      SSL_CTX_load_verify_locations can return negative values on fail,
      therefore to check for failure we check if load is != 1 (success)
      instead of if load is == 0 (failure), the latter being incorrect given
      that behavior.
      0b5efa57