From: Arran Cudbard-Bell Date: Wed, 6 Sep 2017 16:28:41 +0000 (+0700) Subject: Doxygen X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c9686e34dcba1803c55860ae271e66fa2de5e04;p=thirdparty%2Ffreeradius-server.git Doxygen --- diff --git a/src/lib/ldap/bind.c b/src/lib/ldap/bind.c index 15a4a35c04a..b4df292b65a 100644 --- a/src/lib/ldap/bind.c +++ b/src/lib/ldap/bind.c @@ -185,7 +185,11 @@ static void _ldap_bind_io_write(fr_event_list_t *el, int fd, UNUSED int flags, v /** Install I/O handlers for the bind operation * - * @param[in] c connection to StartTLS on. + * @param[in] c connection to StartTLS on. + * @param[in] bind_dn Identity to bind with. + * @param[in] password Password to bind with. + * @param[in] serverctrls Extra controls to pass to the server. + * @param[in] clientctrls Extra controls to pass to libldap. * @return * - 0 on success. * - -1 on failure. diff --git a/src/lib/ldap/connection.c b/src/lib/ldap/connection.c index f0969623367..e2ea89c91bf 100644 --- a/src/lib/ldap/connection.c +++ b/src/lib/ldap/connection.c @@ -16,7 +16,7 @@ /** * $Id$ - * @file lib/ldap/conn.c + * @file lib/ldap/connection.c * @brief Asynchronous connection management functions for LDAP. * * @copyright 2017 Arran Cudbard-Bell (a.cudbardb@freeradius.org) diff --git a/src/lib/ldap/sasl.c b/src/lib/ldap/sasl.c index 9785796d96d..e90f214a5bb 100644 --- a/src/lib/ldap/sasl.c +++ b/src/lib/ldap/sasl.c @@ -278,7 +278,14 @@ static int _sasl_ctx_free(fr_ldap_sasl_ctx_t *sasl_ctx) /** Install I/O handlers for the bind operation * - * @param[in] c connection to StartTLS on. + * @param[in] c connection to StartTLS on. + * @param[in] mechs Space delimited list of sasl mechs to try. + * @param[in] identity SASL identity to bind with. + * @param[in] password Password credential to pass to SASL. + * @param[in] proxy identity. May be NULL. + * @param[in] realm SASL realm. + * @param[in] serverctrls Extra controls to pass to the server. + * @param[in] clientctrls Extra controls to pass to libldap. * @return * - 0 on success. * - -1 on failure. diff --git a/src/lib/ldap/start_tls.c b/src/lib/ldap/start_tls.c index 7fe7efff2db..b8eef16b158 100644 --- a/src/lib/ldap/start_tls.c +++ b/src/lib/ldap/start_tls.c @@ -208,7 +208,9 @@ static void _ldap_start_tls_io_write(fr_event_list_t *el, int fd, UNUSED int fla /** Install I/O handlers for Start TLS negotiation * - * @param[in] c connection to StartTLS on. + * @param[in] c connection to StartTLS on. + * @param[in] serverctrls Extra controls to pass to the server. + * @param[in] clientctrls Extra controls to pass to libldap. * @return * - 0 on success. * - -1 on failure. diff --git a/src/main/connection.c b/src/main/connection.c index 2c41884262e..e61d996dbfd 100644 --- a/src/main/connection.c +++ b/src/main/connection.c @@ -16,7 +16,7 @@ /** * $Id$ - * @file connection.c + * @file src/main/connection.c * @brief Simple state machine for managing connection states. * * @copyright 2017 Arran Cudbard-Bell (a.cudbardb@freeradius.org)