summaryrefslogtreecommitdiff
path: root/source3/libnet/libnet_keytab.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2010-07-02 00:14:04 +0200
committerGünther Deschner <gd@samba.org>2010-07-13 22:40:46 +0200
commit80b47fcb0a73fb97a1b918173a61c55831239a0a (patch)
tree836d75c2642614e461991403cbf6518a23d7d39d /source3/libnet/libnet_keytab.h
parentf85167a161b078b0ffa23598a4a548fb2fd54cbf (diff)
downloadsamba-80b47fcb0a73fb97a1b918173a61c55831239a0a.tar.gz
samba-80b47fcb0a73fb97a1b918173a61c55831239a0a.tar.bz2
samba-80b47fcb0a73fb97a1b918173a61c55831239a0a.zip
s3-libnet: better separate headers.
Guenther
Diffstat (limited to 'source3/libnet/libnet_keytab.h')
-rw-r--r--source3/libnet/libnet_keytab.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/source3/libnet/libnet_keytab.h b/source3/libnet/libnet_keytab.h
index 4d311a48e0..b82e5433eb 100644
--- a/source3/libnet/libnet_keytab.h
+++ b/source3/libnet/libnet_keytab.h
@@ -39,4 +39,22 @@ struct libnet_keytab_context {
bool clean_old_entries;
};
+/* The following definitions come from libnet/libnet_keytab.c */
+
+krb5_error_code libnet_keytab_init(TALLOC_CTX *mem_ctx,
+ const char *keytab_name,
+ struct libnet_keytab_context **ctx);
+krb5_error_code libnet_keytab_add(struct libnet_keytab_context *ctx);
+
+struct libnet_keytab_entry *libnet_keytab_search(struct libnet_keytab_context *ctx,
+ const char *principal, int kvno,
+ const krb5_enctype enctype,
+ TALLOC_CTX *mem_ctx);
+NTSTATUS libnet_keytab_add_to_keytab_entries(TALLOC_CTX *mem_ctx,
+ struct libnet_keytab_context *ctx,
+ uint32_t kvno,
+ const char *name,
+ const char *prefix,
+ const krb5_enctype enctype,
+ DATA_BLOB blob);
#endif /* HAVE_KRB5 */