summaryrefslogtreecommitdiffstats
path: root/src/lib/krb5/ccache/ccapi/stdcc.h
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1999-02-04 07:53:43 +0000
committerTheodore Tso <tytso@mit.edu>1999-02-04 07:53:43 +0000
commit22accce3e40f5b1361a4a452a11b3819db0e2ef9 (patch)
treee2f6a72b3c450b9f1df94d2c2ce8e3ebc7874e89 /src/lib/krb5/ccache/ccapi/stdcc.h
parentaf63a51551b1ade4402c7d9c2d6c31af09ea3474 (diff)
downloadkrb5-22accce3e40f5b1361a4a452a11b3819db0e2ef9.tar.gz
krb5-22accce3e40f5b1361a4a452a11b3819db0e2ef9.tar.xz
krb5-22accce3e40f5b1361a4a452a11b3819db0e2ef9.zip
Initial commit of massively modified stdcc functions to make them somewhat
closer to correct. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11148 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/ccache/ccapi/stdcc.h')
-rw-r--r--src/lib/krb5/ccache/ccapi/stdcc.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/lib/krb5/ccache/ccapi/stdcc.h b/src/lib/krb5/ccache/ccapi/stdcc.h
index 6db85b9d5..4016ee57b 100644
--- a/src/lib/krb5/ccache/ccapi/stdcc.h
+++ b/src/lib/krb5/ccache/ccapi/stdcc.h
@@ -1,4 +1,3 @@
-//#include "k5-int.h"
#include "krb5.h"
#if defined(macintosh)
@@ -11,17 +10,19 @@
#define kStringLiteralLen 255
-//globals to be exported
+/* globals to be exported */
extern krb5_cc_ops krb5_cc_stdcc_ops;
-//structure to stash in the cache's data field
-//only holds another pointer to the actual cache right now
+/*
+ * structure to stash in the cache's data field
+ */
typedef struct _stdccCacheData {
+ char *cache_name;
ccache_p *NamedCache;
} stdccCacheData, *stdccCacheDataPtr;
-//function protoypes complete with bogus windowsesque macros..
+/* function protoypes */
KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_stdcc_close
KRB5_PROTOTYPE((krb5_context, krb5_ccache id ));