Doxygenify.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22065 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-11-11 16:41:06 +00:00
parent b60a57fb82
commit d786e5f4f7

View File

@@ -35,10 +35,15 @@
RCSID("$Id$"); RCSID("$Id$");
/* /**
* convert the getaddrinfo error code in `eai_errno' into a * Convert the getaddrinfo() error code to a Kerberos et error code.
* krb5_error_code. `system_error' should have the value of the errno *
* after the failed call. * @param eai_errno contains the error code from getaddrinfo().
* @param system_error should have the value of errno after the failed getaddrinfo().
*
* @return Kerberos error code representing the EAI errors.
*
* @ingroup krb5_error
*/ */
krb5_error_code KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_FUNCTION
@@ -78,6 +83,17 @@ krb5_eai_to_heim_errno(int eai_errno, int system_error)
} }
} }
/**
* Convert the gethostname() error code (h_error) to a Kerberos et
* error code.
*
* @param eai_errno contains the error code from gethostname().
*
* @return Kerberos error code representing the gethostname errors.
*
* @ingroup krb5_error
*/
krb5_error_code KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_FUNCTION
krb5_h_errno_to_heim_errno(int eai_errno) krb5_h_errno_to_heim_errno(int eai_errno)
{ {