1. 30 Sep, 2018 1 commit
    • Daniel Stenberg's avatar
      doh: only build if h2 enabled · 570008c9
      Daniel Stenberg authored
      The DoH spec says "HTTP/2 [RFC7540] is the minimum RECOMMENDED version
      of HTTP for use with DoH".
      
      Reported-by: Marcel Raad
      Closes #3066
      570008c9
  2. 29 Sep, 2018 4 commits
  3. 28 Sep, 2018 3 commits
  4. 27 Sep, 2018 1 commit
  5. 26 Sep, 2018 3 commits
  6. 25 Sep, 2018 2 commits
  7. 24 Sep, 2018 5 commits
  8. 23 Sep, 2018 6 commits
  9. 22 Sep, 2018 5 commits
  10. 21 Sep, 2018 5 commits
  11. 20 Sep, 2018 3 commits
  12. 19 Sep, 2018 2 commits
    • Daniel Stenberg's avatar
      urlapi: document the error codes, remove two unused ones · 5c73093e
      Daniel Stenberg authored
      Assisted-by: Daniel Gustafsson
      Closes #3019
      5c73093e
    • Daniel Stenberg's avatar
      urlapi: add CURLU_GUESS_SCHEME and fix hostname acceptance · 9307c219
      Daniel Stenberg authored
      In order for this API to fully work for libcurl itself, it now offers a
      CURLU_GUESS_SCHEME flag that makes it "guess" scheme based on the host
      name prefix just like libcurl always did. If there's no known prefix, it
      will guess "http://".
      
      Separately, it relaxes the check of the host name so that IDN host names
      can be passed in as well.
      
      Both these changes are necessary for libcurl itself to use this API.
      
      Assisted-by: Daniel Gustafsson
      Closes #3018
      9307c219