1CURLOPT_KRBLEVEL(3) libcurl CURLOPT_KRBLEVEL(3)
2
3
4
6 CURLOPT_KRBLEVEL - FTP kerberos security level
7
9 #include <curl/curl.h>
10
11 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_KRBLEVEL, char *level);
12
14 Pass a char * as parameter. Set the kerberos security level for FTP;
15 this also enables kerberos awareness. This is a string that should
16 match one of the following: 'clear', 'safe', 'confidential' or 'pri‐
17 vate'. If the string is set but does not match one of these, 'private'
18 will be used. Set the string to NULL to disable kerberos support for
19 FTP.
20
21 The application does not have to keep the string around after setting
22 this option.
23
25 NULL
26
28 FTP
29
31 CURL *curl = curl_easy_init();
32 if(curl) {
33 curl_easy_setopt(curl, CURLOPT_URL, "ftp://example.com/foo.bin");
34 curl_easy_setopt(curl, CURLOPT_KRBLEVEL, "private");
35 ret = curl_easy_perform(curl);
36 curl_easy_cleanup(curl);
37 }
38
40 This option was known as CURLOPT_KRB4LEVEL up to 7.16.3
41
43 Returns CURLE_OK if the option is supported, CURLE_UNKNOWN_OPTION if
44 not, or CURLE_OUT_OF_MEMORY if there was insufficient heap space.
45
47 CURLOPT_KRBLEVEL(3), CURLOPT_USE_SSL(3),
48
49
50
51ibcurl 8.2.1 April 26, 2023 CURLOPT_KRBLEVEL(3)