1. 09 Feb, 2017 2 commits
  2. 08 Feb, 2017 1 commit
  3. 07 Feb, 2017 11 commits
  4. 06 Feb, 2017 3 commits
  5. 01 Feb, 2017 3 commits
  6. 29 Jan, 2017 3 commits
  7. 28 Jan, 2017 4 commits
  8. 27 Jan, 2017 2 commits
  9. 24 Jan, 2017 2 commits
  10. 23 Jan, 2017 3 commits
    • Daniel Stenberg's avatar
      VC: remove the makefile.vc6 build infra · 8611d985
      Daniel Stenberg authored
      The winbuild/ build files is now the single MSVC makefile build choice.
      
      Closes #1215
      8611d985
    • Jay Satiro's avatar
      cmdline-opts/gen.pl: Open input files in CRLF mode · d0837f36
      Jay Satiro authored
      On Windows it's possible to have input files with CRLF line endings and
      a perl that defaults to LF line endings (eg msysgit). Currently that
      results in generator output of mixed line endings of CR, LF and CRLF.
      
      This change fixes that issue in the most succinct way by opening the
      files in :crlf text mode even when the perl being used does not default
      to that mode. (On operating systems that don't have a separate text mode
      it's essentially a no-op.) The output continues to be in the perl's
      native line ending.
      d0837f36
    • Daniel Stenberg's avatar
      4c49b835
  11. 22 Jan, 2017 1 commit
  12. 20 Jan, 2017 4 commits
  13. 19 Jan, 2017 1 commit
    • Richy Kim's avatar
      CURLOPT_BUFFERSIZE: support enlarging receive buffer · 6b761669
      Richy Kim authored
      Replace use of fixed macro BUFSIZE to define the size of the receive
      buffer.  Reappropriate CURLOPT_BUFFERSIZE to include enlarging receive
      buffer size.  Upon setting, resize buffer if larger than the current
      default size up to a MAX_BUFSIZE (512KB). This can benefit protocols
      like SFTP.
      
      Closes #1222
      6b761669