Skip to content
  1. Jan 09, 2019
  2. Jan 08, 2019
  3. Jan 07, 2019
  4. Jan 06, 2019
  5. Jan 04, 2019
  6. Jan 03, 2019
  7. Jan 02, 2019
  8. Jan 01, 2019
  9. Dec 31, 2018
  10. Dec 30, 2018
  11. Dec 27, 2018
    • 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
  12. Dec 26, 2018
  13. Dec 25, 2018
  14. Dec 24, 2018
  15. Dec 23, 2018
  16. Dec 22, 2018
  17. Dec 21, 2018
    • Daniel Stenberg's avatar
      RELEASE-NOTES: synced · 207e7cfa
      Daniel Stenberg authored
      207e7cfa
    • Daniel Stenberg's avatar
      http: added options for allowing HTTP/0.9 responses · 006ff62d
      Daniel Stenberg authored
      Added CURLOPT_HTTP09_ALLOWED and --http0.9 for this purpose.
      
      For now, both the tool and library allow HTTP/0.9 by default.
      docs/DEPRECATE.md lays out the plan for when to reverse that default: 6
      months after the 7.64.0 release. The options are added already now so
      that applications/scripts can start using them already now.
      
      Fixes #2873
      Closes #3383
      006ff62d