trunk patch: http://svn.apache.org/r1510084
Submitted by: covener
Reviewed by: jim, humbedooh
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1523264 13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.4.7
+ *) mod_ldap: retry on an LDAP timeout during authn. [Eric Covener]
+
*) mod_ldap: Change "LDAPReferrals off" to actually set the underlying LDAP
SDK option to OFF, and introduce "LDAPReferrals default" to take the SDK
default, sans rebind authentication callback.
+1: covener, jim, humbedooh
- * mod_ldap: retry on an LDAP timeout during authn.
- trunk patch: http://svn.apache.org/r1510084
- 2.4.x patch: trunk works
- +1: covener, jim, humbedooh
-
-
* mod_ldap: add TRACE5 for LDAP retries
trunk patch: http://svn.apache.org/r1510085
2.4.x patch: trunk works
goto start_over;
}
+ if (result == LDAP_TIMEOUT) {
+ ldc->reason = "ldap_search_ext_s() for user failed with timeout";
+ uldap_connection_unbind(ldc);
+ failures++;
+ goto start_over;
+ }
+
+
/* if there is an error (including LDAP_NO_SUCH_OBJECT) return now */
if (result != LDAP_SUCCESS) {
ldc->reason = "ldap_search_ext_s() for user failed";