Commit cabb46db authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

adjusted to new FTP commands in the command sequence

parent d09b4369
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ PWD
CWD a/path
PORT 127,0,0,1,246,33
TYPE I
SIZE 103
RETR 103
</protocol>
</verify>
+6 −0
Original line number Diff line number Diff line
@@ -18,6 +18,10 @@ FTP user+password in URL and ASCII transfer
 <command>
ftp://userdude:passfellow@%HOSTIP:%FTPPORT/103 --use-ascii
</command>
<file name="log/ftpserver.cmd">
REPLY EPSV 500 no such command
REPLY SIZE 500 no such command
</file>
</test>

# Verify data after the test has been "shot"
@@ -26,8 +30,10 @@ ftp://userdude:passfellow@%HOSTIP:%FTPPORT/103 --use-ascii
USER userdude
PASS passfellow
PWD
EPSV
PASV
TYPE A
SIZE 103
RETR 103
</protocol>
</verify>
+2 −1
Original line number Diff line number Diff line
@@ -27,8 +27,9 @@ USER anonymous
PASS curl_by_daniel@haxx.se
PWD
CWD /path with  spaces/and things2
PASV
EPSV
TYPE A
SIZE 106
RETR 106
</protocol>
</verify>
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ works
USER anonymous
PASS curl_by_daniel@haxx.se
PWD
PASV
EPSV
TYPE I
STOR 107
</protocol>
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ Moooooooooooo
USER anonymous
PASS curl_by_daniel@haxx.se
PWD
PASV
EPSV
TYPE I
APPE 109
</protocol>
Loading