diff options
author | Steve Holme <steve_holme@hotmail.com> | 2019-04-17 23:47:51 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2019-05-22 22:55:05 +0100 |
commit | a14d72ca2fec5d4eb5a043936e4f7ce08015c177 (patch) | |
tree | ad856028203028c20e1ba9c30bb3b74d64a7f41c /include | |
parent | 081d374f4949b7fabfa76a0fb14daa02d47b5050 (diff) | |
download | curl-a14d72ca2fec5d4eb5a043936e4f7ce08015c177.tar.gz |
sasl: Implement SASL authorisation identity via CURLOPT_SASL_AUTHZID
Added the ability for the calling program to specify the authorisation
identity (authzid), the identity to act as, in addition to the
authentication identity (authcid) and password when using SASL PLAIN
authentication.
Fixed #3653
Closes #3790
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 3 | ||||
-rw-r--r-- | include/curl/typecheck-gcc.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index d83b21798..0c86e945a 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1921,6 +1921,9 @@ typedef enum { /* maximum age of a connection to consider it for reuse (in seconds) */ CINIT(MAXAGE_CONN, LONG, 288), + /* SASL authorisation identity */ + CINIT(SASL_AUTHZID, STRINGPOINT, 289), + CURLOPT_LASTENTRY /* the last unused */ } CURLoption; diff --git a/include/curl/typecheck-gcc.h b/include/curl/typecheck-gcc.h index 2d1de4d43..8827058e9 100644 --- a/include/curl/typecheck-gcc.h +++ b/include/curl/typecheck-gcc.h @@ -309,6 +309,7 @@ _CURL_WARNING(_curl_easy_getinfo_err_curl_off_t, (option) == CURLOPT_RTSP_SESSION_ID || \ (option) == CURLOPT_RTSP_STREAM_URI || \ (option) == CURLOPT_RTSP_TRANSPORT || \ + (option) == CURLOPT_SASL_AUTHZID || \ (option) == CURLOPT_SERVICE_NAME || \ (option) == CURLOPT_SOCKS5_GSSAPI_SERVICE || \ (option) == CURLOPT_SSH_HOST_PUBLIC_KEY_MD5 || \ |