added TFTP errors to match curl.h

This commit is contained in:
Marty Kuhrt 2005-12-30 00:07:25 +00:00
parent 0e3ebd9841
commit 0536b6c459
2 changed files with 14 additions and 0 deletions

View File

@ -91,6 +91,13 @@ FTP_SSL_FAILED <requested FTP SSL level failed>
SEND_FAIL_REWIND <sending data requires a rewind that failed>
SSL_ENGINE_INITFAILED <failed to initialise ENGINE>
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>
.END

View File

@ -93,5 +93,12 @@ long vms_cond[] =
CURL_SEND_FAIL_REWIND,
CURL_SSL_ENGINE_INITFAILED,
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
};