1CURLOPT_GSSAPI_DELEGATION(3)curl_easy_setopt optionsCURLOPT_GSSAPI_DELEGATION(3)
2
3
4
6 CURLOPT_GSSAPI_DELEGATION - set allowed GSS-API delegation
7
9 #include <curl/curl.h>
10
11 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_GSSAPI_DELEGATION, long
12 level);
13
15 Set the long parameter level to CURLGSSAPI_DELEGATION_FLAG to allow
16 unconditional GSSAPI credential delegation. The delegation is disabled
17 by default since 7.21.7. Set the parameter to CURLGSSAPI_DELEGA‐
18 TION_POLICY_FLAG to delegate only if the OK-AS-DELEGATE flag is set in
19 the service ticket in case this feature is supported by the GSS-API
20 implementation and the definition of GSS_C_DELEG_POLICY_FLAG was avail‐
21 able at compile-time.
22
24 CURLGSSAPI_DELEGATION_NONE
25
27 HTTP
28
30 CURL *curl = curl_easy_init();
31 if(curl) {
32 CURLcode ret;
33 curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/");
34 /* delegate if okayed by policy */
35 curl_easy_setopt(curl, CURLOPT_GSSAPI_DELEGATION,
36 CURLGSSAPI_DELEGATION_POLICY_FLAG);
37 ret = curl_easy_perform(curl);
38 }
39
40
42 Added in 7.22.0
43
45 Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION
46 if not.
47
49 CURLOPT_HTTPAUTH(3), CURLOPT_PROXYAUTH(3),
50
51
52
53libcurl 7.64.0 May 31, 2017 CURLOPT_GSSAPI_DELEGATION(3)