summaryrefslogtreecommitdiffstats
path: root/source3/include/libsmbclient.h
diff options
context:
space:
mode:
authorAndreas Schneider <anschneider@suse.de>2008-06-23 16:29:40 +0200
committerDerrell Lipman <derrell.lipman@unwireduniverse.com>2008-06-23 15:36:38 -0400
commite5ac03b0ae22855f7131ba886ef829b7fe44e949 (patch)
tree82b2f01660a93f4213e0f2b94db794a4e88f6c5b /source3/include/libsmbclient.h
parentef0a7b0b94cfb9b57d634b083d2b2652bb88865d (diff)
downloadsamba-e5ac03b0ae22855f7131ba886ef829b7fe44e949.tar.gz
samba-e5ac03b0ae22855f7131ba886ef829b7fe44e949.tar.xz
samba-e5ac03b0ae22855f7131ba886ef829b7fe44e949.zip
Add documentation for kerberos support in libsmbclient.
Signed-off-by: Andreas Schneider <anschneider@suse.de> Signed-off-by: Derrell Lipman <derrell.lipman@unwireduniverse.com> (This used to be commit fa803ce183376c938f92b0f31a7d89d522fd309f)
Diffstat (limited to 'source3/include/libsmbclient.h')
-rw-r--r--source3/include/libsmbclient.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h
index 96002643efe..74d0d5c9ddb 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