]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Doxygen
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 6 Sep 2017 16:28:41 +0000 (23:28 +0700)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 6 Sep 2017 16:28:41 +0000 (23:28 +0700)
src/lib/ldap/bind.c
src/lib/ldap/connection.c
src/lib/ldap/sasl.c
src/lib/ldap/start_tls.c
src/main/connection.c

index 15a4a35c04a3cfe7903b08a3ec1a877a27346acf..b4df292b65a47382cd24710121f83af665fedb98 100644 (file)
@@ -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.
index f09696233672323595a105db724e718d20f14b54..e2ea89c91bf118f0be9c567fc93e7345eea8498f 100644 (file)
@@ -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)
index 9785796d96de28aa092d2e037b2dadd81fd5d9af..e90f214a5bbf4f8a81877454f134e6c961e51369 100644 (file)
@@ -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.
index 7fe7efff2db4d6b44a954a1d2972c71d977f8888..b8eef16b15870ec2ad2c4d60b96a5d0570555989 100644 (file)
@@ -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.
index 2c41884262eb2a1f7e3bd2988a2c96196bfd8321..e61d996dbfd75d23dec9ae37e3ff1ce65027144a 100644 (file)
@@ -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)