From 989e429cdab16f69d83b0605d8c615a930989cba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Fri, 3 Oct 2003 11:50:32 +0000 Subject: [PATCH] add enum krb5_get_init_creds_req_pac and use it in struct _krb5_get_init_creds_opt_private git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12954 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/krb5_locl.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/krb5/krb5_locl.h b/lib/krb5/krb5_locl.h index 96e0138f4..670bf7743 100644 --- a/lib/krb5/krb5_locl.h +++ b/lib/krb5/krb5_locl.h @@ -136,10 +136,18 @@ struct sockaddr_dl; #define O_BINARY 0 #endif +typedef enum { + KRB5_PA_PAC_DONT_CARE = 0, + KRB5_PA_PAC_REQ_TRUE, + KRB5_PA_PAC_REQ_FALSE +} krb5_get_init_creds_req_pac; + struct _krb5_get_init_creds_opt_private { /* ENC_TIMESTAMP */ const char *password; krb5_s2k_proc key_proc; + /* PA_PAC_REQUEST */ + krb5_get_init_creds_req_pac req_pac; }; #endif /* __KRB5_LOCL_H__ */