From 80b47fcb0a73fb97a1b918173a61c55831239a0a Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 2 Jul 2010 00:14:04 +0200 Subject: s3-libnet: better separate headers. Guenther --- source3/libnet/libnet_keytab.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'source3/libnet/libnet_keytab.h') 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 */ -- cgit