Skip to content
Snippets Groups Projects
Commit 0536b6c4 authored by Marty Kuhrt's avatar Marty Kuhrt
Browse files

added TFTP errors to match curl.h

parent 0e3ebd98
No related branches found
No related tags found
No related merge requests found
......@@ -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
......@@ -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
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment