From bf51f05a50a63ade21316a18d2bf1801767ab234 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 25 Nov 2004 22:21:49 +0000 Subject: FTP improvements: If EPSV, EPRT or LPRT is tried and doesn't work, it will not be retried on the same server again even if a following request is made using a persistent connection. If a second request is made to a server, requesting a file from the same directory as the previous request operated on, libcurl will no longer make that long series of CWD commands just to end up on the same spot. Note that this is only for *exactly* the same dir. There is still room for improvements to optimize the CWD-sending when the dirs are only slightly different. Added test 210, 211 and 212 to verify these changes. Had to improve the test script too and added a new primitive to the test file format. --- tests/data/test212 | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 tests/data/test212 (limited to 'tests/data/test212') diff --git a/tests/data/test212 b/tests/data/test212 new file mode 100644 index 000000000..cae7baff6 --- /dev/null +++ b/tests/data/test212 @@ -0,0 +1,57 @@ +# Server-side + + +data blobb + + +data blobb +data blobb + + + +# Client-side + + +ipv6 + + +ftp + + +Get two FTP files with no remote EPRT or LPRT support + + +ftp://%HOSTIP:%FTPPORT/a/path/212 ftp://%HOSTIP:%FTPPORT/a/path/212 -P - + + +REPLY EPRT 500 no such command +REPLY LPRT 500 no such command + + + +# Verify data after the test has been "shot" + + +s/^EPRT .*/EPRT stripped/ +s/^LPRT .*/LPRT stripped/ +s/^PORT .*/PORT stripped/ + + +USER anonymous +PASS curl_by_daniel@haxx.se +PWD +CWD a +CWD path +EPRT stripped +LPRT stripped +PORT stripped +TYPE I +SIZE 212 +RETR 212 +PORT stripped +TYPE I +SIZE 212 +RETR 212 +QUIT + + -- cgit v1.2.3