From 827b83bca1f1b2491833ccb3f9aeb3a49aa01738 Mon Sep 17 00:00:00 2001 From: John Kohl Date: Fri, 1 Dec 1989 17:14:07 +0000 Subject: [PATCH] add #defines for READ, RDWR modes git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@42 dc483132-0cff-0310-8789-dd5450dbe970 --- src/include/krb5/ccache.h | 4 ++++ 1 file changed, 4 insertions(+) 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__ */ -- 2.26.2