summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>2003-03-06 02:39:51 +0000
committerTom Yu <tlyu@mit.edu>2003-03-06 02:39:51 +0000
commit416d9a774090ee78c30a844025887bd2b9e79d16 (patch)
tree125ef2ffc3d8cee7138aa853731aa3ba8bc0e065 /src/include
parent74cb6881569b70f41fb9781ebc9a5b95bba59c7d (diff)
downloadkrb5-416d9a774090ee78c30a844025887bd2b9e79d16.tar.gz
krb5-416d9a774090ee78c30a844025887bd2b9e79d16.tar.xz
krb5-416d9a774090ee78c30a844025887bd2b9e79d16.zip
use kdb keytab for kadmind
kadmind previously required a file-based keytab to support its use of gssapi. For ease of administration, a kdb-based keytab would be beneficial. This commit includes changes to the kdb library to support this goal, as well as actual changes in the kadmind itself. ticket: new git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15237 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r--src/include/krb5/ChangeLog5
-rw-r--r--src/include/krb5/kdb_kt.h6
2 files changed, 10 insertions, 1 deletions
diff --git a/src/include/krb5/ChangeLog b/src/include/krb5/ChangeLog
index 226b0a5ae8..ff3d7b3012 100644
--- a/src/include/krb5/ChangeLog
+++ b/src/include/krb5/ChangeLog
@@ -1,3 +1,8 @@
+2003-03-05 Tom Yu <tlyu@mit.edu>
+
+ * kdb_kt.h: Add krb5_ktkdb_set_context. Update prototype of
+ krb5_ktdb_resolve. Add krb5_kt_kdb_ops.
+
2003-03-05 Sam Hartman <hartmans@mit.edu>
* Remove kdb_dbm.h
diff --git a/src/include/krb5/kdb_kt.h b/src/include/krb5/kdb_kt.h
index e0afae1ca4..1c06a5bb9b 100644
--- a/src/include/krb5/kdb_kt.h
+++ b/src/include/krb5/kdb_kt.h
@@ -35,7 +35,11 @@
#include "kdb.h"
-krb5_error_code krb5_ktkdb_resolve (krb5_context, krb5_keytab *);
+extern struct _krb5_kt_ops krb5_kt_kdb_ops;
+
+krb5_error_code krb5_ktkdb_resolve (krb5_context, const char *, krb5_keytab *);
+
+krb5_error_code krb5_ktkdb_set_context(krb5_context);
#endif /* !defined(macintosh) */
#endif /* KRB5_KDB5_DBM__ */