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
This commit is contained in:
Love Hörnquist Åstrand
2003-10-03 11:50:32 +00:00
parent 3af232862a
commit 989e429cda

View File

@@ -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__ */