From: Richard Basch Date: Tue, 5 Dec 1995 03:36:11 +0000 (+0000) Subject: Extended the context structure to support differing tgt and application X-Git-Tag: krb5-1.0-beta6~743 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6d71189a749af19f2786e1e2629141c40ec40b01;p=krb5.git Extended the context structure to support differing tgt and application session keys. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7164 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/k5-int.h b/src/include/k5-int.h index 7be7ba70b..ce2033613 100644 --- a/src/include/k5-int.h +++ b/src/include/k5-int.h @@ -912,8 +912,10 @@ void krb5_free_etype_info struct _krb5_context { krb5_magic magic; - krb5_enctype FAR *ktypes; - int ktype_count; + krb5_enctype FAR *in_tkt_ktypes; + int in_tkt_ktype_count; + krb5_enctype FAR *tgs_ktypes; + int tgs_ktype_count; void FAR *os_context; char FAR *default_realm; profile_t profile;