1. 09 Mar, 2016 1 commit
  2. 08 Mar, 2016 6 commits
  3. 07 Mar, 2016 6 commits
  4. 06 Mar, 2016 12 commits
  5. 05 Mar, 2016 5 commits
  6. 03 Mar, 2016 1 commit
  7. 01 Mar, 2016 2 commits
  8. 29 Feb, 2016 1 commit
  9. 28 Feb, 2016 2 commits
  10. 26 Feb, 2016 1 commit
  11. 25 Feb, 2016 2 commits
    • Daniel Stenberg's avatar
      file: try reading from files with no size · 1e486db9
      Daniel Stenberg authored
      Some systems have special files that report as 0 bytes big, but still
      contain data that can be read (for example /proc/cpuinfo on
      Linux). Starting now, a zero byte size is considered "unknown" size and
      will be read as far as possible anyway.
      
      Reported-by: Jesse Tan
      
      Closes #681
      1e486db9
    • Jay Satiro's avatar
      configure: warn on invalid ca bundle or path · 3ae77f07
      Jay Satiro authored
      - Warn if --with-ca-bundle file does not exist.
      
      - Warn if --with-ca-path directory does not contain certificates.
      
      - Improve help messages for both.
      
      Example configure output:
      
        ca cert bundle:   /some/file   (warning: certs not found)
        ca cert path:     /some/dir   (warning: certs not found)
      
      Bug: https://github.com/curl/curl/issues/404
      Reported-by: Jeffrey Walton
      3ae77f07
  12. 24 Feb, 2016 1 commit
    • Daniel Stenberg's avatar
      Curl_read: check for activated HTTP/1 pipelining, not only requested · 46bf7996
      Daniel Stenberg authored
      ... as when pipelining is used, we read things into a unified buffer and
      we don't do that with HTTP/2. This could then easily make programs that
      set CURLMOPT_PIPELINING = CURLPIPE_HTTP1|CURLPIPE_MULTIPLEX to get data
      intermixed or plain broken between HTTP/2 streams.
      
      Reported-by: Anders Bakken
      46bf7996