From bb9b7fd6128ed9113600223a995bf45fde809afb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sun, 25 Jan 2009 00:42:45 +0000 Subject: [PATCH] add krb5_principals (and add it to krb5_keytab_entry) git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24430 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/krb5.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/krb5/krb5.h b/lib/krb5/krb5.h index 4b542e67f..ad93c48a3 100644 --- a/lib/krb5/krb5.h +++ b/lib/krb5/krb5.h @@ -323,6 +323,7 @@ typedef const char *krb5_const_realm; /* stupid language */ typedef Principal krb5_principal_data; typedef struct Principal *krb5_principal; typedef const struct Principal *krb5_const_principal; +typedef struct Principals *krb5_principals; typedef time_t krb5_deltat; typedef time_t krb5_timestamp; @@ -484,6 +485,8 @@ typedef struct krb5_keytab_entry { krb5_kvno vno; krb5_keyblock keyblock; uint32_t timestamp; + uint32_t flags; + krb5_principals aliases; } krb5_keytab_entry; typedef struct krb5_kt_cursor {