sbonazzo / rpms / cyrus-sasl

Forked from rpms/cyrus-sasl 2 years ago
Clone

Blame SOURCES/cyrus-sasl-2.1.22-ldap-timeout.patch

6611fc
commit c9447e1c3ffba88783e5d9396b832be82d3c78fc
6611fc
Author: Kazuo Ito <ito.kazuo@oss.ntt.co.jp>
6611fc
Date:   Wed Dec 10 12:03:29 2008 +0900
6611fc
6611fc
    support for LDAP_OPT_TIMEOUT
6611fc
    
6611fc
    OpenLDAP since 2.4 implements support for this option in ldap_result(),
6611fc
    among other things.
6611fc
6611fc
diff --git a/saslauthd/lak.c b/saslauthd/lak.c
6611fc
index 803d51f..8714265 100644
6611fc
--- a/saslauthd/lak.c
6611fc
+++ b/saslauthd/lak.c
6611fc
@@ -833,6 +833,11 @@ static int lak_connect(
6611fc
 		syslog(LOG_WARNING|LOG_AUTH, "Unable to set LDAP_OPT_NETWORK_TIMEOUT %d.%d.", lak->conf->timeout.tv_sec, lak->conf->timeout.tv_usec);
6611fc
 	}
6611fc
 
6611fc
+	rc = ldap_set_option(lak->ld, LDAP_OPT_TIMEOUT, &(lak->conf->timeout));
6611fc
+	if (rc != LDAP_OPT_SUCCESS) {
6611fc
+		syslog(LOG_WARNING|LOG_AUTH, "Unable to set LDAP_OPT_TIMEOUT %d.%d.", lak->conf->timeout.tv_sec, lak->conf->timeout.tv_usec);
6611fc
+	}
6611fc
+
6611fc
 	rc = ldap_set_option(lak->ld, LDAP_OPT_TIMELIMIT, &(lak->conf->time_limit));
6611fc
 	if (rc != LDAP_OPT_SUCCESS) {
6611fc
 		syslog(LOG_WARNING|LOG_AUTH, "Unable to set LDAP_OPT_TIMELIMIT %d.", lak->conf->time_limit);