summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorRichard Basch <probe@mit.edu>1995-12-05 03:36:11 +0000
committerRichard Basch <probe@mit.edu>1995-12-05 03:36:11 +0000
commit6d71189a749af19f2786e1e2629141c40ec40b01 (patch)
tree34a93ab2306fb3a904f2e60a803bbda857f8a857 /src/include
parentef63f5369eb7dcc1f606575ebc7b27c2f7eb6f60 (diff)
downloadkrb5-6d71189a749af19f2786e1e2629141c40ec40b01.tar.gz
krb5-6d71189a749af19f2786e1e2629141c40ec40b01.tar.xz
krb5-6d71189a749af19f2786e1e2629141c40ec40b01.zip
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
Diffstat (limited to 'src/include')
-rw-r--r--src/include/k5-int.h6
1 files changed, 4 insertions, 2 deletions
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;