mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 15:48:49 -05:00
added TFTP errors to match curl.h
This commit is contained in:
parent
0e3ebd9841
commit
0536b6c459
@ -91,6 +91,13 @@ FTP_SSL_FAILED <requested FTP SSL level failed>
|
|||||||
SEND_FAIL_REWIND <sending data requires a rewind that failed>
|
SEND_FAIL_REWIND <sending data requires a rewind that failed>
|
||||||
SSL_ENGINE_INITFAILED <failed to initialise ENGINE>
|
SSL_ENGINE_INITFAILED <failed to initialise ENGINE>
|
||||||
LOGIN_DENIED <user or password not accepted. failed to login>
|
LOGIN_DENIED <user or password not accepted. failed to login>
|
||||||
|
TFTP_NOTFOUND <file not found on server>
|
||||||
|
TFTP_PERM <permission problem on server>
|
||||||
|
TFTP_DISKFULL <out of disk space on server>
|
||||||
|
TFTP_ILLEGAL <illegal TFTP operation>
|
||||||
|
TFTP_UNKNOWNID <unknown transfer ID>
|
||||||
|
TFTP_EXISTS <file already exists>
|
||||||
|
TFTP_NOSUCHUSER <no such user>
|
||||||
CURL_LAST <CURLMSG.MSG is out of sync with the source code>
|
CURL_LAST <CURLMSG.MSG is out of sync with the source code>
|
||||||
|
|
||||||
.END
|
.END
|
||||||
|
@ -93,5 +93,12 @@ long vms_cond[] =
|
|||||||
CURL_SEND_FAIL_REWIND,
|
CURL_SEND_FAIL_REWIND,
|
||||||
CURL_SSL_ENGINE_INITFAILED,
|
CURL_SSL_ENGINE_INITFAILED,
|
||||||
CURL_LOGIN_DENIED,
|
CURL_LOGIN_DENIED,
|
||||||
|
CURL_TFTP_NOTFOUND,
|
||||||
|
CURL_TFTP_PERM,
|
||||||
|
CURL_TFTP_DISKFULL,
|
||||||
|
CURL_TFTP_ILLEGAL,
|
||||||
|
CURL_TFTP_UNKNOWNID,
|
||||||
|
CURL_TFTP_EXISTS,
|
||||||
|
CURL_TFTP_NOSUCHUSER,
|
||||||
CURL_CURL_LAST
|
CURL_CURL_LAST
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user