diff options
-rw-r--r-- | source3/include/libsmbclient.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h index 96002643ef..74d0d5c9dd 100644 --- a/source3/include/libsmbclient.h +++ b/source3/include/libsmbclient.h @@ -259,6 +259,11 @@ typedef struct _SMBCCTX SMBCCTX; * Type for the the authentication function called by the library to * obtain authentication credentals * + * For kerberos support the function should just be called without + * prompting the user for credentials. Which means a simple 'return' + * should work. Take a look at examples/libsmbclient/get_auth_data_fn.h + * and examples/libsmbclient/testbrowse.c. + * * @param srv Server being authenticated to * * @param shr Share being authenticated to @@ -293,6 +298,11 @@ typedef void (*smbc_get_auth_data_fn)(const char *srv, * Type for the the authentication function called by the library to * obtain authentication credentals * + * For kerberos support the function should just be called without + * prompting the user for credentials. Which means a simple 'return' + * should work. Take a look at examples/libsmbclient/get_auth_data_fn.h + * and examples/libsmbclient/testbrowse.c. + * * @param c Pointer to the smb context * * @param srv Server being authenticated to |