diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2007-08-30 20:34:57 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2007-08-30 20:34:57 +0000 |
commit | 9f44a95522162c0f4a61093efe1bf1f58b087358 (patch) | |
tree | ea90ca762a9a7a4f6772cb44b23e994b41f32644 /tests/data | |
parent | 4b60c3e9d3d284125857ecf90b1910db5ba318a2 (diff) |
Renamed several libcurl error codes and options to make them more general
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)
Diffstat (limited to 'tests/data')
-rw-r--r-- | tests/data/test189 | 2 | ||||
-rw-r--r-- | tests/data/test190 | 2 | ||||
-rw-r--r-- | tests/data/test99 | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/data/test189 b/tests/data/test189 index 7e49e1eea..ccd20759f 100644 --- a/tests/data/test189 +++ b/tests/data/test189 @@ -61,7 +61,7 @@ Host: 127.0.0.1:%HTTPPORT Accept: */*
</protocol> -# 33 is CURLE_HTTP_RANGE_ERROR +# 33 is CURLE_RANGE_ERROR <errorcode> 33 </errorcode> diff --git a/tests/data/test190 b/tests/data/test190 index 722ef365d..fd87b07da 100644 --- a/tests/data/test190 +++ b/tests/data/test190 @@ -24,7 +24,7 @@ ftp://%HOSTIP:%FTPPORT/path/to/file/190 -m %FTPTIME2 # Verify data after the test has been "shot" <verify> -# 28 is CURLE_OPERATION_TIMEOUTED +# 28 is CURLE_OPERATION_TIMEDOUT <errorcode> 28 </errorcode> diff --git a/tests/data/test99 b/tests/data/test99 index 2fdb15f9c..3d1f1684c 100644 --- a/tests/data/test99 +++ b/tests/data/test99 @@ -50,7 +50,7 @@ http://%HOSTIP:%HTTPPORT/99 -C 9999999999 # # Verify data after the test has been "shot" <verify> -# 33 is CURLE_HTTP_RANGE_ERROR +# 33 is CURLE_RANGE_ERROR <errorcode> 33 </errorcode> |