diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-06-28 13:24:50 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-06-28 18:24:37 +0200 |
commit | cef06b5ca180654471fa6d4aa0493ae3f53de2ea (patch) | |
tree | 62041e58b8b9cdcf4e7c0df5eaf8c75f91f3a3c2 /source4/heimdal/kdc/windc_plugin.h | |
parent | 6982ea767d2b1ddd2346431a8f2327cc29f45b87 (diff) | |
download | samba-cef06b5ca180654471fa6d4aa0493ae3f53de2ea.tar.gz samba-cef06b5ca180654471fa6d4aa0493ae3f53de2ea.tar.xz samba-cef06b5ca180654471fa6d4aa0493ae3f53de2ea.zip |
HEIMDAL:kdc: pass down the delegated_proxy_principal to the verify_pac()
function
This is needed in order to add the S4U_DELEGATION_INFO to the pac.
metze
Diffstat (limited to 'source4/heimdal/kdc/windc_plugin.h')
-rw-r--r-- | source4/heimdal/kdc/windc_plugin.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/source4/heimdal/kdc/windc_plugin.h b/source4/heimdal/kdc/windc_plugin.h index 4755a5ea8f..b328e3ffb3 100644 --- a/source4/heimdal/kdc/windc_plugin.h +++ b/source4/heimdal/kdc/windc_plugin.h @@ -57,10 +57,11 @@ typedef krb5_error_code typedef krb5_error_code (*krb5plugin_windc_pac_verify)(void *, krb5_context, - const krb5_principal, - struct hdb_entry_ex *, - struct hdb_entry_ex *, - struct hdb_entry_ex *, + const krb5_principal, /* new ticket client */ + const krb5_principal, /* delegation proxy */ + struct hdb_entry_ex *,/* client */ + struct hdb_entry_ex *,/* server */ + struct hdb_entry_ex *,/* krbtgt */ krb5_pac *); typedef krb5_error_code @@ -72,7 +73,7 @@ typedef krb5_error_code KDC_REQ *, krb5_data *); -#define KRB5_WINDC_PLUGIN_MINOR 5 +#define KRB5_WINDC_PLUGIN_MINOR 6 #define KRB5_WINDC_PLUGING_MINOR KRB5_WINDC_PLUGIN_MINOR typedef struct krb5plugin_windc_ftable { |