diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-04-26 13:00:45 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-04-26 13:00:45 +0000 |
commit | 6ef7a81a3b1405ee97519980225aec53240981f2 (patch) | |
tree | 2a6ef7090a93d51fb853da5d6036ae3b1215f113 /docs | |
parent | 95152aec685c4d11de6cb25802303e4872d51b3e (diff) |
updated with more error codes
Diffstat (limited to 'docs')
-rw-r--r-- | docs/curl.1 | 26 | ||||
-rw-r--r-- | docs/libcurl/libcurl-errors.3 | 18 |
2 files changed, 44 insertions, 0 deletions
diff --git a/docs/curl.1 b/docs/curl.1 index a9b77af77..a99a59911 100644 --- a/docs/curl.1 +++ b/docs/curl.1 @@ -1393,6 +1393,32 @@ Unrecognized transfer encoding Invalid LDAP URL .IP 63 Maximum file size exceeded +.IP 64 +Requested FTP SSL level failed +.IP 65 +Sending the data requires a rewind that failed +.IP 66 +Failed to initialise SSL Engine +.IP 67 +User, password or similar was not accepted and curl failed to login +.IP 68 +File not found on TFTP server +.IP 69 +Permission problem on TFTP server +.IP 70 +Out of disk space on TFTP server +.IP 71 +Illegal TFTP operation +.IP 72 +Unknown TFTP transfer ID +.IP 73 +File already exists (TFTP) +.IP 74 +No such user (TFTP) +.IP 75 +Character conversion failed +.IP 76 +Character conversion functions required .IP XX There will appear more error codes here in future releases. The existing ones are meant to never change. diff --git a/docs/libcurl/libcurl-errors.3 b/docs/libcurl/libcurl-errors.3 index fdf632663..6fe9971dd 100644 --- a/docs/libcurl/libcurl-errors.3 +++ b/docs/libcurl/libcurl-errors.3 @@ -190,6 +190,24 @@ rewinding operation failed Initiating the SSL Engine failed .IP "CURLE_LOGIN_DENIED (67)" The remote server denied curl to login (Added in 7.13.1) +.IP "CURLE_TFTP_NOTFOUND (68)" +File not found on TFTP server +.IP "CURLE_TFTP_PERM (69" +Permission problem on TFTP server +.IP "CURLE_TFTP_DISKFULL (70)" +Out of disk space on TFTP server +.IP "CURLE_TFTP_ILLEGAL (71)" +Illegal TFTP operation +.IP "CURLE_TFTP_UNKNOWNID (72)" +Unknown TFTP transfer ID +.IP "CURLE_TFTP_EXISTS (73)" +TFTP File already exists +.IP "CURLE_TFTP_NOSUCHUSER (74)" +No such TFTP user +.IP "CURLE_CONV_FAILED (75)" +Character conversion failed +.IP "CURLE_CONV_REQD (76)" +Caller must register conversion callbacks .SH "CURLMcode" This is the generic return code used by functions in the libcurl multi interface. Also consider \fIcurl_multi_strerror(3)\fP. |