From: John Kohl Date: Fri, 1 Dec 1989 17:14:07 +0000 (+0000) Subject: add #defines for READ, RDWR modes X-Git-Tag: krb5-1.0-alpha2~1331 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=827b83bca1f1b2491833ccb3f9aeb3a49aa01738;p=krb5.git add #defines for READ, RDWR modes git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@42 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/krb5/ccache.h b/src/include/krb5/ccache.h index ebfc02d0d..a1074502f 100644 --- a/src/include/krb5/ccache.h +++ b/src/include/krb5/ccache.h @@ -20,4 +20,8 @@ typedef char * krb5_tcache_name; /* a name of a ticket cache */ typedef int krb5_tcache_id; /* a short "identifier" for quick cache access */ typedef int krb5_tcache_magic; /* cookie for sequential lookup */ + +#define KRB5_TC_READ 0 /* open cache for read only */ +#define KRB5_TC_RDWR 1 /* open cache for read/write */ + #endif /* __KRB5_TCACHE__ */