]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Document arguments
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Sun, 22 May 2016 02:25:25 +0000 (22:25 -0400)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Sun, 22 May 2016 04:00:42 +0000 (00:00 -0400)
src/modules/rlm_eap/types/rlm_eap_sim/rlm_eap_sim.c
src/modules/rlm_ldap/ldap.c
src/modules/rlm_ldap/sasl.c

index ec33c78f9be3b5567f1b3e2e2fe61688634cfd87..33285e5cf886cc463617df1571b94f4ec9b69e2d 100644 (file)
@@ -364,6 +364,7 @@ static int eap_sim_vector_from_umts(eap_session_t *eap_session, VALUE_PAIR *vps,
  *
  * @param eap_session  The current eap_session.
  * @param vps          List to hunt for triplets in.
+ * @param idx          To write EAP-SIM triplets to.
  * @param ess          EAP session state.
  * @param src          Forces triplets to be retrieved from a particular src
  *                     and ensures if multiple triplets are being retrieved
index 48506573d7df1c9351f7436a24ce259192b5a924..2a40741824a22f54a2ed5157be3b3ef4736826c1 100644 (file)
@@ -748,6 +748,7 @@ process_error:
  * @param[in] password         of the user, may be NULL if no password is specified.
  * @param[in] sasl             mechanism to use for bind, and additional parameters.
  * @param[in] retry            whether we're rebinding an existing connection.
+ * @param[in] timeout          Maximum time bind is allowed to take.
  * @param[in] serverctrls      Only used for SASL binds.  May be NULL.
  * @param[in] clientctrls      Search controls for sasl_bind.
  *                             Only used for SASL binds. May be NULL.
index a36121bf65647008d574394333fae8d6670e2248..82fb93058496af9c0ea8ec724a52905749956591 100644 (file)
@@ -91,15 +91,17 @@ static int _sasl_interact(UNUSED LDAP *handle, UNUSED unsigned flags, void *ctx,
 /** Initiate an LDAP interactive bind
  *
  * @param[in] inst rlm_ldap configuration.
- * @param[in] request Current request, this may be NULL, in which case all debug logging is done with radlog.
- * @param[in] conn to use. May change as this function calls functions which auto re-connect.
- * @param[in] identity of the user.
- * @param[in] password of the user.
- * @param[in] sasl mechanism to use for bind, and additional parameters.
- * @param[in] serverctrls Search controls to pass to the server.  May be NULL.
- * @param[in] clientctrls Search controls for ldap_sasl_interactive.  May be NULL.
- * @param[out] error message resulting from bind.
- * @param[out] extra information about the error.
+ * @param[in] request          Current request, this may be NULL.
+ * @param[in] conn             to use. May change as this function calls functions
+ *                             which auto re-connect.
+ * @param[in] identity         of the user.
+ * @param[in] password         of the user.
+ * @param[in] sasl             mechanism to use for bind, and additional parameters.
+ * @param[in] serverctrls      Search controls to pass to the server.  May be NULL.
+ * @param[in] clientctrls      Search controls for ldap_sasl_interactive.  May be NULL.
+ * @param[in] timeout          Maximum time bind is allowed to take.
+ * @param[out] error           message resulting from bind.
+ * @param[out] extra           information about the error.
  * @return One of the LDAP_PROC_* (#ldap_rcode_t) values.
  */
 ldap_rcode_t rlm_ldap_sasl_interactive(rlm_ldap_t const *inst, REQUEST *request,