diff options
author | Tom Yu <tlyu@mit.edu> | 2006-11-18 01:53:27 +0000 |
---|---|---|
committer | Tom Yu <tlyu@mit.edu> | 2006-11-18 01:53:27 +0000 |
commit | ea34547e917e0b72b41c453ec60e9784fdff079c (patch) | |
tree | 107e7435e5f508a2ac3c19aac14376e56bfab3a1 /src/include/krb5 | |
parent | 6c3f85e40270175d3f178d013a65cce358646fcb (diff) | |
download | krb5-ea34547e917e0b72b41c453ec60e9784fdff079c.tar.gz krb5-ea34547e917e0b72b41c453ec60e9784fdff079c.tar.xz krb5-ea34547e917e0b72b41c453ec60e9784fdff079c.zip |
* src/lib/krb5/ccache/ccbase.c (krb5int_cc_getops): Internal
function to fetch ops vector given ccache prefix string.
(krb5_cc_new_unique): New function to generate a new unique
ccache of a given type.
* src/include/krb5/krb5.hin: Prototype for krb5_cc_new_unique().
* src/lib/krb5/libkrb5.exports:
* src/lib/krb5_32.def: Add krb5_cc_new_unique().
ticket: 3091
tags: pullup
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18857 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/krb5')
-rw-r--r-- | src/include/krb5/krb5.hin | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/krb5/krb5.hin b/src/include/krb5/krb5.hin index 7dacc5737c..9d9920efd8 100644 --- a/src/include/krb5/krb5.hin +++ b/src/include/krb5/krb5.hin @@ -1310,6 +1310,12 @@ krb5_cccol_cursor_next( krb5_error_code KRB5_CALLCONV krb5_cccol_cursor_free(krb5_context context, krb5_cccol_cursor *cursor); +krb5_error_code KRB5_CALLCONV +krb5_cc_new_unique( + krb5_context context, + const char *type, + const char *hint, + krb5_ccache *id); /* * end "ccache.h" |