summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2004-11-01 18:44:15 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:53:07 -0500
commit7cb23bf74df9b7870dd7886d5a92da05339b923f (patch)
tree6630b36d50c960a0213adc321be8c1ac4209166a /source3
parent1704ff8c124b97d7ca429df75b910020c98e5026 (diff)
downloadsamba-7cb23bf74df9b7870dd7886d5a92da05339b923f.tar.gz
samba-7cb23bf74df9b7870dd7886d5a92da05339b923f.tar.bz2
samba-7cb23bf74df9b7870dd7886d5a92da05339b923f.zip
r3438: fix some kerberos-related prototype warnings
Guenther (This used to be commit 43c8a9e25961f65677a55e701f54c0227329a756)
Diffstat (limited to 'source3')
-rw-r--r--source3/include/includes.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h
index d51e4c53f1..9f3fcacc20 100644
--- a/source3/include/includes.h
+++ b/source3/include/includes.h
@@ -1340,6 +1340,7 @@ void krb5_free_unparsed_name(krb5_context ctx, char *val);
/* Samba wrapper function for krb5 functionality. */
void setup_kaddr( krb5_address *pkaddr, struct sockaddr *paddr);
int create_kerberos_key_from_string(krb5_context context, krb5_principal host_princ, krb5_data *password, krb5_keyblock *key, krb5_enctype enctype);
+int create_kerberos_key_from_string_direct(krb5_context context, krb5_principal host_princ, krb5_data *password, krb5_keyblock *key, krb5_enctype enctype);
void get_auth_data_from_tkt(DATA_BLOB *auth_data, krb5_ticket *tkt);
krb5_const_principal get_principal_from_tkt(krb5_ticket *tkt);
krb5_error_code krb5_locate_kdc(krb5_context ctx, const krb5_data *realm, struct sockaddr **addr_pp, int *naddrs, int get_masters);
@@ -1347,6 +1348,8 @@ krb5_error_code get_kerberos_allowed_etypes(krb5_context context, krb5_enctype *
void free_kerberos_etypes(krb5_context context, krb5_enctype *enctypes);
BOOL get_krb5_smb_session_key(krb5_context context, krb5_auth_context auth_context, DATA_BLOB *session_key, BOOL remote);
krb5_error_code smb_krb5_kt_free_entry(krb5_context context, krb5_keytab_entry *kt_entry);
+krb5_principal kerberos_fetch_salt_princ_for_host_princ(krb5_context context, krb5_principal host_princ, int enctype);
+
#endif /* HAVE_KRB5 */