summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schneider <anschneider@suse.de>2008-06-23 11:00:20 +0200
committerKarolin Seeger <kseeger@samba.org>2008-06-24 09:10:47 +0200
commitc7d963191e1858000752ff57eac1501777f0ebda (patch)
tree523c7533b88675dc62d11c04be9021755ce98d69
parent44031107568fae0afe501bf218b48aa74598f132 (diff)
downloadsamba-c7d963191e1858000752ff57eac1501777f0ebda.tar.gz
samba-c7d963191e1858000752ff57eac1501777f0ebda.tar.xz
samba-c7d963191e1858000752ff57eac1501777f0ebda.zip
Add krb5 support for the testbrowse example.
Signed-off-by: Andreas Schneider <anschneider@suse.de> Signed-off-by: Derrell Lipman <derrell.lipman@unwireduniverse.com> (cherry picked from commit 84b1ea39a4f27ebcf06a2bafed78396c7353df0e)
-rw-r--r--examples/libsmbclient/get_auth_data_fn.h13
-rw-r--r--examples/libsmbclient/testbrowse.c3
2 files changed, 15 insertions, 1 deletions
diff --git a/examples/libsmbclient/get_auth_data_fn.h b/examples/libsmbclient/get_auth_data_fn.h
index b1d36c8beac..6b91c973375 100644
--- a/examples/libsmbclient/get_auth_data_fn.h
+++ b/examples/libsmbclient/get_auth_data_fn.h
@@ -1,3 +1,5 @@
+#include <stdlib.h>
+
static void
get_auth_data_fn(const char * pServer,
const char * pShare,
@@ -15,6 +17,8 @@ get_auth_data_fn(const char * pServer,
char username[256] = { '\0' };
char password[256] = { '\0' };
+ static int krb5_set = 1;
+
if (strcmp(server, pServer) == 0 &&
strcmp(share, pShare) == 0 &&
*workgroup != '\0' &&
@@ -25,7 +29,12 @@ get_auth_data_fn(const char * pServer,
strncpy(pPassword, password, maxLenPassword - 1);
return;
}
-
+
+ if (krb5_set && getenv("KRB5CCNAME")) {
+ krb5_set = 0;
+ return;
+ }
+
fprintf(stdout, "Workgroup: [%s] ", pWorkgroup);
fgets(temp, sizeof(temp), stdin);
@@ -68,4 +77,6 @@ get_auth_data_fn(const char * pServer,
strncpy(workgroup, pWorkgroup, sizeof(workgroup) - 1);
strncpy(username, pUsername, sizeof(username) - 1);
strncpy(password, pPassword, sizeof(password) - 1);
+
+ krb5_set = 1;
}
diff --git a/examples/libsmbclient/testbrowse.c b/examples/libsmbclient/testbrowse.c
index a7eda365af9..a6e6395078f 100644
--- a/examples/libsmbclient/testbrowse.c
+++ b/examples/libsmbclient/testbrowse.c
@@ -117,6 +117,9 @@ main(int argc, char * argv[])
smbc_setFunctionAuthData(context, get_auth_data_fn);
}
+ smbc_setOptionUseKerberos(context, 1);
+ smbc_setOptionFallbackAfterKerberos(context, 1);
+
/* If we've been asked to log to stderr instead of stdout, ... */
if (debug_stderr) {
/* ... then set the option to do so */