mirror of
https://github.com/moparisthebest/curl
synced 2024-11-17 06:55:02 -05:00
44 lines
553 B
Plaintext
44 lines
553 B
Plaintext
|
# Server-side
|
||
|
<reply>
|
||
|
<data>
|
||
|
data blobb
|
||
|
</data>
|
||
|
<datacheck>
|
||
|
data blobb
|
||
|
data blobb
|
||
|
</datacheck>
|
||
|
</reply>
|
||
|
|
||
|
# Client-side
|
||
|
<client>
|
||
|
<server>
|
||
|
ftp
|
||
|
</server>
|
||
|
<name>
|
||
|
Get two FTP files from the same remote dir: no second CWD
|
||
|
</name>
|
||
|
<command>
|
||
|
ftp://%HOSTIP:%FTPPORT/a/path/210 ftp://%HOSTIP:%FTPPORT/a/path/210
|
||
|
</command>
|
||
|
</test>
|
||
|
|
||
|
# Verify data after the test has been "shot"
|
||
|
<verify>
|
||
|
<protocol>
|
||
|
USER anonymous
|
||
|
PASS curl_by_daniel@haxx.se
|
||
|
PWD
|
||
|
CWD a
|
||
|
CWD path
|
||
|
EPSV
|
||
|
TYPE I
|
||
|
SIZE 210
|
||
|
RETR 210
|
||
|
EPSV
|
||
|
TYPE I
|
||
|
SIZE 210
|
||
|
RETR 210
|
||
|
QUIT
|
||
|
</protocol>
|
||
|
</verify>
|