diff options
author | Greg Hudson <ghudson@mit.edu> | 2012-03-27 02:32:57 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2012-03-27 02:32:57 +0000 |
commit | 3baf23b396e8aa331a2abeaa72ade021ce960be1 (patch) | |
tree | 6654f4b6c979d6db7376ea2cfc74f6d5e46e29b9 /src | |
parent | 27d6c4d5de552ee57cd42fb35f58d4fbb874f3ad (diff) | |
download | krb5-3baf23b396e8aa331a2abeaa72ade021ce960be1.tar.gz krb5-3baf23b396e8aa331a2abeaa72ade021ce960be1.tar.xz krb5-3baf23b396e8aa331a2abeaa72ade021ce960be1.zip |
Fix up gssapi_ext.h Doxygen markup somewhat
* Bring formatting for gss_userok and gss_authorize_localname into
conformance.
* Bring parameter markup for gss_localname into conformance.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25790 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/gssapi/generic/gssapi_ext.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/lib/gssapi/generic/gssapi_ext.h b/src/lib/gssapi/generic/gssapi_ext.h index 8fdb567fce..b4f8a77ada 100644 --- a/src/lib/gssapi/generic/gssapi_ext.h +++ b/src/lib/gssapi/generic/gssapi_ext.h @@ -47,12 +47,12 @@ gss_pname_to_uid * Provides a platform-specific name for a GSSAPI name as interpreted by a * given mechanism. * - * @param name The gss name resulting from accept_sec_context - * @param mech_type The mechanism that will be asked to map @a name to a - * local name - * @param localname Pointer to a buffer_desc allocated by the caller - * that will be filled in with the local name on successful - * completion. + * @param [out] minor Minor status code + * @param [in] name The gss name resulting from accept_sec_context + * @param [in] mech_type The mechanism that will be asked to map @a name to a + * local name + * @param [out] localname Caller-allocated buffer to be filled in with the + * local name on success */ OM_uint32 KRB5_CALLCONV gss_localname @@ -61,7 +61,8 @@ gss_localname gss_const_OID mech_type, gss_buffer_t localname); -/** Determine whether a mechanism name is authorized to act as a username. +/** + * Determine whether a mechanism name is authorized to act as a username. * * @param [in] name Mechanism name * @param [in] username System username @@ -77,7 +78,8 @@ int KRB5_CALLCONV gss_userok(const gss_name_t name, const char *username); -/** Determine whether a mechanism name is authorized to act as a local name. +/** + * Determine whether a mechanism name is authorized to act as a local name. * * @param [out] minor Minor status code * @param [in] name Mechanism name |