more doxygen
This commit is contained in:
@@ -425,6 +425,19 @@ unparse_name_fixed(krb5_context context,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unparse the principal name to a fixed buffer
|
||||||
|
*
|
||||||
|
* @param context A Kerberos context.
|
||||||
|
* @param principal principal to unparse
|
||||||
|
* @param name buffer to write name to
|
||||||
|
* @param len length of buffer
|
||||||
|
*
|
||||||
|
* @return An krb5 error code, see krb5_get_error_message().
|
||||||
|
*
|
||||||
|
* @ingroup krb5_principal
|
||||||
|
*/
|
||||||
|
|
||||||
krb5_error_code KRB5_LIB_FUNCTION
|
krb5_error_code KRB5_LIB_FUNCTION
|
||||||
krb5_unparse_name_fixed(krb5_context context,
|
krb5_unparse_name_fixed(krb5_context context,
|
||||||
krb5_const_principal principal,
|
krb5_const_principal principal,
|
||||||
@@ -434,6 +447,20 @@ krb5_unparse_name_fixed(krb5_context context,
|
|||||||
return unparse_name_fixed(context, principal, name, len, 0);
|
return unparse_name_fixed(context, principal, name, len, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unparse the principal name to a fixed buffer. The realm is skipped
|
||||||
|
* if its a default realm.
|
||||||
|
*
|
||||||
|
* @param context A Kerberos context.
|
||||||
|
* @param principal principal to unparse
|
||||||
|
* @param name buffer to write name to
|
||||||
|
* @param len length of buffer
|
||||||
|
*
|
||||||
|
* @return An krb5 error code, see krb5_get_error_message().
|
||||||
|
*
|
||||||
|
* @ingroup krb5_principal
|
||||||
|
*/
|
||||||
|
|
||||||
krb5_error_code KRB5_LIB_FUNCTION
|
krb5_error_code KRB5_LIB_FUNCTION
|
||||||
krb5_unparse_name_fixed_short(krb5_context context,
|
krb5_unparse_name_fixed_short(krb5_context context,
|
||||||
krb5_const_principal principal,
|
krb5_const_principal principal,
|
||||||
@@ -444,6 +471,20 @@ krb5_unparse_name_fixed_short(krb5_context context,
|
|||||||
KRB5_PRINCIPAL_UNPARSE_SHORT);
|
KRB5_PRINCIPAL_UNPARSE_SHORT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unparse the principal name with unparse flags to a fixed buffer.
|
||||||
|
*
|
||||||
|
* @param context A Kerberos context.
|
||||||
|
* @param principal principal to unparse
|
||||||
|
* @param flags unparse flags
|
||||||
|
* @param name buffer to write name to
|
||||||
|
* @param len length of buffer
|
||||||
|
*
|
||||||
|
* @return An krb5 error code, see krb5_get_error_message().
|
||||||
|
*
|
||||||
|
* @ingroup krb5_principal
|
||||||
|
*/
|
||||||
|
|
||||||
krb5_error_code KRB5_LIB_FUNCTION
|
krb5_error_code KRB5_LIB_FUNCTION
|
||||||
krb5_unparse_name_fixed_flags(krb5_context context,
|
krb5_unparse_name_fixed_flags(krb5_context context,
|
||||||
krb5_const_principal principal,
|
krb5_const_principal principal,
|
||||||
@@ -538,6 +579,19 @@ krb5_unparse_name_flags(krb5_context context,
|
|||||||
return unparse_name(context, principal, name, flags);
|
return unparse_name(context, principal, name, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unparse the principal name to a allocated buffer. The realm is
|
||||||
|
* skipped if its a default realm.
|
||||||
|
*
|
||||||
|
* @param context A Kerberos context.
|
||||||
|
* @param principal principal to unparse
|
||||||
|
* @param name returned buffer, free with krb5_xfree()
|
||||||
|
*
|
||||||
|
* @return An krb5 error code, see krb5_get_error_message().
|
||||||
|
*
|
||||||
|
* @ingroup krb5_principal
|
||||||
|
*/
|
||||||
|
|
||||||
krb5_error_code KRB5_LIB_FUNCTION
|
krb5_error_code KRB5_LIB_FUNCTION
|
||||||
krb5_unparse_name_short(krb5_context context,
|
krb5_unparse_name_short(krb5_context context,
|
||||||
krb5_const_principal principal,
|
krb5_const_principal principal,
|
||||||
@@ -546,18 +600,18 @@ krb5_unparse_name_short(krb5_context context,
|
|||||||
return unparse_name(context, principal, name, KRB5_PRINCIPAL_UNPARSE_SHORT);
|
return unparse_name(context, principal, name, KRB5_PRINCIPAL_UNPARSE_SHORT);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0 /* not implemented */
|
/**
|
||||||
|
* Set a new realm for a principal, and as a side-effect free the
|
||||||
krb5_error_code KRB5_LIB_FUNCTION
|
* previous realm.
|
||||||
krb5_unparse_name_ext(krb5_context context,
|
*
|
||||||
krb5_const_principal principal,
|
* @param context A Kerberos context.
|
||||||
char **name,
|
* @param principal principal set the realm for
|
||||||
size_t *size)
|
* @param realm the new realm to set
|
||||||
{
|
*
|
||||||
krb5_abortx(context, "unimplemented krb5_unparse_name_ext called");
|
* @return An krb5 error code, see krb5_get_error_message().
|
||||||
}
|
*
|
||||||
|
* @ingroup krb5_principal
|
||||||
#endif
|
*/
|
||||||
|
|
||||||
krb5_error_code KRB5_LIB_FUNCTION
|
krb5_error_code KRB5_LIB_FUNCTION
|
||||||
krb5_principal_set_realm(krb5_context context,
|
krb5_principal_set_realm(krb5_context context,
|
||||||
|
Reference in New Issue
Block a user