1krb5_cc_set_default_name - Set the default credential cache name. 2=================================================================== 3 4.. 5 6.. c:function:: krb5_error_code krb5_cc_set_default_name(krb5_context context, const char * name) 7 8.. 9 10 11:param: 12 13 **[in]** **context** - Library context 14 15 **[in]** **name** - Default credential cache name or NULL 16 17 18.. 19 20 21:retval: 22 - 0 Success 23 - KV5M_CONTEXT Bad magic number for _krb5_context structure 24 25 26:return: 27 - Kerberos error codes 28 29.. 30 31 32 33 34 35 36 37Set the default credential cache name to *name* for future operations using *context* . If *name* is NULL, clear any previous application-set default name and forget any cached value of the default name for *context* . 38 39 40 41Calls to this function invalidate the result of any previous calls to krb5_cc_default_name() using *context* . 42 43 44 45 46 47 48 49 50 51 52.. 53 54 55 56 57 58