1krb5_cc_resolve - Resolve a credential cache name. 2==================================================== 3 4.. 5 6.. c:function:: krb5_error_code krb5_cc_resolve(krb5_context context, const char * name, krb5_ccache * cache) 7 8.. 9 10 11:param: 12 13 **[in]** **context** - Library context 14 15 **[in]** **name** - Credential cache name to be resolved 16 17 **[out]** **cache** - Credential cache handle 18 19 20.. 21 22 23:retval: 24 - 0 Success 25 26 27:return: 28 - Kerberos error codes 29 30.. 31 32 33 34 35 36 37 38Fills in *cache* with a *cache* handle that corresponds to the name in *name* . *name* should be of the form **type:residual** , and *type* must be a type known to the library. If the *name* does not contain a colon, interpret it as a file name. 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53.. 54 55 56 57 58 59