Commit 9b3b7ad2 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

HTTP IPv6 support added to the test suite

parent 1b8ac7c6
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
@@ -7,6 +7,26 @@
                                  Changelog


Daniel (11 December 2004)
- Made the test suite HTTP server (sws) capable of using IPv6, and then
  extended the test environment to support that and also added three test
  cases (240, 241, 242) that run tests using IPv6. One of them uses a URL that
  didn't work before the 10 dec fix by Kai Sommerfeld.

- Made a failed file:// resume output an error message

- Corrected the CURLE_BAD_DOWNLOAD_RESUME error message in lib/strerror.c

- Dan Fandrich:

  simplified and consolidated the SSL checks in configure and the usage of the
  defines in lib/setup.h

  provided a first libcurl.pc.in file for pkg-config (but the result is not
  installed anywhere at this point)

  extended the cross compile section in the docs/INSTALL file

Daniel (10 December 2004)
- When providing user name in the URL and a IPv6-style IP-address (like in
  "ftp://user@[::1]/tmp"), the URL parser didn't get the host extracted
+1 −1
Original line number Diff line number Diff line
@@ -66,6 +66,6 @@ advice from friends like these:
 Tim Sneddon, Ian Gulliver, Jean-Philippe Barrette-LaPierre, Jeff Phillips,
 Wojciech Zwiefka, David Phillips, Reinout van Schouwen, Maurice Barnum,
 Richard Atterer, Rene Bernhardt, Matt Veenstra, Bryan Henderson, Ton Voon,
 Kai Sommerfeld
 Kai Sommerfeld, David Byron

        Thanks! (and sorry if I forgot to mention someone)
+2 −4
Original line number Diff line number Diff line
@@ -77,10 +77,8 @@ reply is sent
<client>

<server>
protocols as in 'http' 'ftp' etc. Give only one per line. Used for test cases
500+ (at this point) to specify which servers the test case requires. In the
future all test cases should use this. Makes us independent of the test
case number.
What server(s) this test case requires/uses:
'http' 'ftp', 'https', 'ftps', 'http-ipv6'. Give only one per line.
</server>

<features>
+2 −1
Original line number Diff line number Diff line
@@ -29,7 +29,8 @@ EXTRA_DIST = test1 test108 test117 test127 test20 test27 test34 test46 \
 test184 test185 test186 test187 test188 test189 test191 test192	\
 test193 test194 test195 test196 test197 test198 test515 test516	\
 test517 test518 test210 test211 test212 test220 test221 test222	\
 test223 test224 test206 test207 test208 test209 test213
 test223 test224 test206 test207 test208 test209 test213 test240        \
 test241 test242

# The following tests have been removed from the dist since they no longer
# work. We need to fix the test suite's FTPS server first, then bring them
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ Funny-head: yesyes
http
</server>
 <name>
simple HTTP GET
HTTP GET
 </name>
 <command>
http://%HOSTIP:%HTTPPORT/1
Loading