From d00328e20768f90b0ee6ee0c2425997b3c3ff521 Mon Sep 17 00:00:00 2001 From: Philip Hazel Date: Thu, 11 Nov 2004 12:05:54 +0000 Subject: [PATCH] Two minor tidies to the recent ldap.c changes. --- src/src/lookups/ldap.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/src/lookups/ldap.c b/src/src/lookups/ldap.c index c4777bc87..330164570 100644 --- a/src/src/lookups/ldap.c +++ b/src/src/lookups/ldap.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/lookups/ldap.c,v 1.2 2004/11/10 14:15:20 ph10 Exp $ */ +/* $Cambridge: exim/src/src/lookups/ldap.c,v 1.3 2004/11/11 12:05:54 ph10 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -129,7 +129,7 @@ Arguments: password password for authentication, or NULL sizelimit max number of entries returned, or 0 for no limit timelimit max time to wait, or 0 for no limit - tcplimit max time to connect, or 0 for OS default + tcplimit max time for network activity, e.g. connect, or 0 for OS default deference the dereference option, which is one of LDAP_DEREF_{NEVER,SEARCHING,FINDING,ALWAYS} @@ -271,6 +271,15 @@ for (lcp = ldap_connections; lcp != NULL; lcp = lcp->next) if (ldapi || port == lcp->port) break; } +/* Use this network timeout in any requests. */ + +if (tcplimit > 0) + { + timeout.tv_sec = tcplimit; + timeout.tv_usec = 0; + timeoutptr = &timeout; + } + /* If no cached connection found, we must open a connection to the server. If the server name is actually an absolute path, we set ldapi=TRUE above. This requests connection via a Unix socket. However, as far as I know, only OpenLDAP @@ -447,15 +456,6 @@ else host, porttext); } -/* Whatever follows, obey this timeout in any requests. */ - -if (tcplimit > 0) - { - timeout.tv_sec = tcplimit; - timeout.tv_usec = 0; - timeoutptr = &timeout; - } - /* Bind with the user/password supplied, or an anonymous bind if these values are NULL, unless a cached connection is already bound with the same values. */ @@ -474,7 +474,7 @@ if (!lcp->bound || == -1) { *errmsg = string_sprintf("failed to bind the LDAP connection to server " - "%s%s - LDAP error", host, porttext); + "%s%s - ldap_bind() returned -1", host, porttext); goto RETURN_ERROR; } -- 2.25.1