k5-int.h: Add an entry to the os_context to store the default ccache
authorTheodore Tso <tytso@mit.edu>
Tue, 2 Feb 1999 04:25:20 +0000 (04:25 +0000)
committerTheodore Tso <tytso@mit.edu>
Tue, 2 Feb 1999 04:25:20 +0000 (04:25 +0000)
name.

krb5.hin (krb5_cc_set_default_name): Add function prototype which sets
the defulat ccache name.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11139 dc483132-0cff-0310-8789-dd5450dbe970

src/include/ChangeLog
src/include/k5-int.h
src/include/krb5.hin

index 8f724e7a03ae842a5fdff5364dd9e88a9042ae7f..14d3fcd0691c81a4989fd7ff52d40751e26606c4 100644 (file)
@@ -1,3 +1,11 @@
+1999-02-01  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * k5-int.h: Add an entry to the os_context to store the default
+               ccache name.
+
+       * krb5.hin (krb5_cc_set_default_name): Add function prototype
+               which sets the defulat ccache name.
+       
 Thu Jan 21 15:23:28 1999  Theodore Y. Ts'o  <tytso@mit.edu>
 
        * krb5.hin: Fix realm iterator prototypes so that they use
index fa8824c49e60698bfa98679987ba07621f38e9a2..85e86a83080a5010c432b87a88222d1bc5c75918 100644 (file)
@@ -754,6 +754,7 @@ typedef struct _krb5_os_context {
        krb5_int32      time_offset;
        krb5_int32      usec_offset;
        krb5_int32      os_flags;
+       char *          default_ccname;
 } *krb5_os_context;
 
 /*
index 630e8d213ff85c9773fe88da433261b32de29b8b..a36c567e2c8e847b6b0c1a3c9b2d2e357a414886 100644 (file)
@@ -1692,6 +1692,8 @@ KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_cc_resolve
                krb5_ccache FAR * ));
 KRB5_DLLIMP const char FAR * KRB5_CALLCONV krb5_cc_default_name
        KRB5_PROTOTYPE((krb5_context));
+KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_cc_set_default_name
+       KRB5_PROTOTYPE((krb5_context, const char *));
 KRB5_DLLIMP krb5_error_code KRB5_CALLCONV krb5_cc_default
        KRB5_PROTOTYPE((krb5_context,
                krb5_ccache FAR *));