mirror of
https://github.com/moparisthebest/curl
synced 2024-11-02 08:35:03 -04:00
9f44a95522
and allow reuse by multiple protocols. Several unused error codes were removed. In all cases, macros were added to preserve source (and binary) compatibility with the old names. These macros are subject to removal at a future date, but probably not before 2009. An application can be tested to see if it is using any obsolete code by compiling it with the CURL_NO_OLDIES macro defined. Documented some newer error codes in libcurl-error(3)
39 lines
520 B
Plaintext
39 lines
520 B
Plaintext
<testcase>
|
|
# Server-side
|
|
<reply>
|
|
<servercmd>
|
|
DELAY CWD 60
|
|
</servercmd>
|
|
</reply>
|
|
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
ftp
|
|
</server>
|
|
<killserver>
|
|
ftp
|
|
</killserver>
|
|
<name>
|
|
FTP download with strict timeout and slow CWD
|
|
</name>
|
|
<command>
|
|
ftp://%HOSTIP:%FTPPORT/path/to/file/190 -m %FTPTIME2
|
|
</command>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
# 28 is CURLE_OPERATION_TIMEDOUT
|
|
<errorcode>
|
|
28
|
|
</errorcode>
|
|
<protocol>
|
|
USER anonymous
|
|
PASS ftp@example.com
|
|
PWD
|
|
CWD path
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|