1. 13 Mar, 2017 1 commit
  2. 12 Mar, 2017 5 commits
  3. 11 Mar, 2017 8 commits
  4. 10 Mar, 2017 3 commits
  5. 09 Mar, 2017 5 commits
  6. 08 Mar, 2017 7 commits
  7. 07 Mar, 2017 9 commits
  8. 06 Mar, 2017 2 commits
    • Dan Fandrich's avatar
      test1260: removed errant XML tag · 3914c07e
      Dan Fandrich authored
      3914c07e
    • Daniel Stenberg's avatar
      URL: return error on malformed URLs with junk after port number · aadb7c7b
      Daniel Stenberg authored
      ... because it causes confusion with users. Example URLs:
      
      "http://[127.0.0.1]:11211:80" which a lot of languages' URL parsers will
      parse and claim uses port number 80, while libcurl would use port number
      11211.
      
      "http://user@example.com:80@localhost" which by the WHATWG URL spec will
      be treated to contain user name 'user@example.com' but according to
      RFC3986 is user name 'user' for the host 'example.com' and then port 80
      is followed by "@localhost"
      
      Both these formats are now rejected, and verified so in test 1260.
      
      Reported-by: Orange Tsai
      aadb7c7b