Skip to content
  1. Mar 13, 2017
  2. Mar 12, 2017
  3. Mar 11, 2017
  4. Mar 10, 2017
  5. Mar 09, 2017
  6. Mar 08, 2017
  7. Mar 07, 2017
  8. Mar 06, 2017
    • 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