1. 07 Jan, 2019 3 commits
  2. 06 Jan, 2019 2 commits
    • Marcel Raad's avatar
      VS projects: fix build warning · d5cfefd0
      Marcel Raad authored
      Starting with Visual Studio 2017 Update 9, Visual Studio doesn't like
      the MinimalRebuild option anymore and warns:
      
      cl : Command line warning D9035: option 'Gm' has been deprecated and
      will be removed in a future release
      
      The option can be safely removed so that the default is used.
      
      Closes https://github.com/curl/curl/pull/3425
      d5cfefd0
    • Marcel Raad's avatar
      schannel: fix compiler warning · e939afeb
      Marcel Raad authored
      When building with Unicode on MSVC, the compiler warns about freeing a
      pointer to const in Curl_unicodefree. Fix this by declaring it as
      non-const and casting the argument to Curl_convert_UTF8_to_tchar to
      non-const too, like we do in all other places.
      
      Closes https://github.com/curl/curl/pull/3435
      e939afeb
  3. 04 Jan, 2019 2 commits
  4. 03 Jan, 2019 3 commits
  5. 02 Jan, 2019 3 commits
  6. 01 Jan, 2019 3 commits
  7. 31 Dec, 2018 1 commit
  8. 30 Dec, 2018 3 commits
  9. 27 Dec, 2018 2 commits
    • Daniel Gustafsson's avatar
      RELEASE-NOTES: synced · a63fe3e5
      Daniel Gustafsson authored
      a63fe3e5
    • Claes Jakobsson's avatar
      hostip: support wildcard hosts · d8cae791
      Claes Jakobsson authored
      This adds support for wildcard hosts in CURLOPT_RESOLVE. These are
      try-last so any non-wildcard entry is resolved first. If specified,
      any host not matched by another CURLOPT_RESOLVE config will use this
      as fallback.
      
      Example send a.com to 10.0.0.1 and everything else to 10.0.0.2:
        curl --resolve *:443:10.0.0.2 --resolve a.com:443:10.0.0.1 \
             https://a.com https://b.com
      
      
      
      This is probably quite similar to using:
        --connect-to a.com:443:10.0.0.1:443 --connect-to :443:10.0.0.2:443
      
      Closes #3406
      Reviewed-by: default avatarDaniel Stenberg <daniel@haxx.se>
      d8cae791
  10. 26 Dec, 2018 2 commits
  11. 25 Dec, 2018 3 commits
  12. 24 Dec, 2018 1 commit
  13. 23 Dec, 2018 3 commits
  14. 22 Dec, 2018 4 commits
  15. 21 Dec, 2018 3 commits
  16. 20 Dec, 2018 2 commits