Take new SMTP definitions into account in OS400 wrapper and RPG binding

This commit is contained in:
Patrick Monnerat 2009-12-21 12:26:48 +00:00
parent 83d34a246e
commit 57d3488a0d
3 changed files with 35 additions and 13 deletions

View File

@ -107,6 +107,8 @@ options:
CURLOPT_PROXYPASSWORD CURLOPT_PROXYPASSWORD
CURLOPT_NOPROXY CURLOPT_NOPROXY
CURLOPT_SOCKS5_GSSAPI_SERVICE CURLOPT_SOCKS5_GSSAPI_SERVICE
CURLOPT_MAIL_FROM
CURLOPT_MAIL_RCPT
Else it is the same as for curl_easy_setopt(). Else it is the same as for curl_easy_setopt().
Note that CURLOPT_ERRORBUFFER is not in the list above, since it gives the Note that CURLOPT_ERRORBUFFER is not in the list above, since it gives the
address of an (empty) character buffer, not the address of a string. address of an (empty) character buffer, not the address of a string.

View File

@ -1030,7 +1030,7 @@ curl_easy_setopt_ccsid(CURL * curl, CURLoption tag, ...)
if (testwarn) { if (testwarn) {
testwarn = 0; testwarn = 0;
if ((int) STRING_LAST != (int) STRING_SOCKS5_GSSAPI_SERVICE + 1) if ((int) STRING_LAST != (int) STRING_MAIL_RCPT + 1)
curl_mfprintf(stderr, curl_mfprintf(stderr,
"*** WARNING: curl_easy_setopt_ccsid() should be reworked ***\n"); "*** WARNING: curl_easy_setopt_ccsid() should be reworked ***\n");
} }
@ -1083,6 +1083,8 @@ curl_easy_setopt_ccsid(CURL * curl, CURLoption tag, ...)
/* SSH2 not (yet) implemented on OS400. */ /* SSH2 not (yet) implemented on OS400. */
/* case CURLOPT_SSH_KNOWNHOSTS: */ /* case CURLOPT_SSH_KNOWNHOSTS: */
case CURLOPT_SOCKS5_GSSAPI_SERVICE: case CURLOPT_SOCKS5_GSSAPI_SERVICE:
case CURLOPT_MAIL_FROM:
case CURLOPT_MAIL_RCPT:
s = va_arg(arg, char *); s = va_arg(arg, char *);
ccsid = va_arg(arg, unsigned int); ccsid = va_arg(arg, unsigned int);

View File

@ -521,29 +521,41 @@
d c 3 d c 3
* *
d CURLPROTO_HTTP... d CURLPROTO_HTTP...
d c X'0001' d c X'00000001'
d CURLPROTO_HTTPS... d CURLPROTO_HTTPS...
d c X'0002' d c X'00000002'
d CURLPROTO_FTP... d CURLPROTO_FTP...
d c X'0004' d c X'00000004'
d CURLPROTO_FTPS... d CURLPROTO_FTPS...
d c X'0008' d c X'00000008'
d CURLPROTO_SCP... d CURLPROTO_SCP...
d c X'0010' d c X'00000010'
d CURLPROTO_SFTP... d CURLPROTO_SFTP...
d c X'0020' d c X'00000020'
d CURLPROTO_TELNET... d CURLPROTO_TELNET...
d c X'0040' d c X'00000040'
d CURLPROTO_LDAP... d CURLPROTO_LDAP...
d c X'0080' d c X'00000080'
d CURLPROTO_LDAPS... d CURLPROTO_LDAPS...
d c X'0100' d c X'00000100'
d CURLPROTO_DICT... d CURLPROTO_DICT...
d c X'0200' d c X'00000200'
d CURLPROTO_FILE... d CURLPROTO_FILE...
d c X'0400' d c X'00000400'
d CURLPROTO_TFTP... d CURLPROTO_TFTP...
d c X'0800' d c X'00000800'
d CURLPROTO_IMAP...
d c X'00001000'
d CURLPROTO_IMAPS...
d c X'00002000'
d CURLPROTO_POP3...
d c X'00004000'
d CURLPROTO_POP3S...
d c X'00008000'
d CURLPROTO_SMTP...
d c X'00010000'
d CURLPROTO_SMTPS...
d c X'00020000'
* *
d CURLoption s 10i 0 based(######ptr######) Enum d CURLoption s 10i 0 based(######ptr######) Enum
d CURLOPT_FILE c 10001 d CURLOPT_FILE c 10001
@ -877,7 +889,13 @@
d c 20184 d c 20184
d CURLOPT_SSH_KEYDATA... d CURLOPT_SSH_KEYDATA...
d c 10185 d c 10185
d CURLOPT_MAIL_FROM...
d c 10186
d CURLOPT_MAIL_RCPT...
d c 10187
* *
d CURLOPT_SERVER_RESPONSE_TIMEOUT...
d c 00112
d CURLOPT_POST301... d CURLOPT_POST301...
d c 00161 Obsolescent d c 00161 Obsolescent
* *