diff options
author | Günther Deschner <gd@samba.org> | 2006-03-09 09:08:11 +0000 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2006-03-09 09:08:11 +0000 |
commit | 5ae22c84abc7144549f1c1d36d17e35f8d57d605 (patch) | |
tree | 8a288b3f2746bfb8961d54928134cd8a66c3c575 /source/lib/smbldap.c | |
parent | d2532ddd743a4deb155f1c94dd0d5da174f1fba7 (diff) | |
download | samba-5ae22c84abc7144549f1c1d36d17e35f8d57d605.tar.gz samba-5ae22c84abc7144549f1c1d36d17e35f8d57d605.tar.xz samba-5ae22c84abc7144549f1c1d36d17e35f8d57d605.zip |
r14060: Only set the last rebind timestamp when we did rebind after a non-read
LDAP operation. That way we avoid the replication sleep after a simple
redirected search operation
Guenther
Diffstat (limited to 'source/lib/smbldap.c')
-rw-r--r-- | source/lib/smbldap.c | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/source/lib/smbldap.c b/source/lib/smbldap.c index e54464a49be..327c5a7c4de 100644 --- a/source/lib/smbldap.c +++ b/source/lib/smbldap.c @@ -853,8 +853,27 @@ static int rebindproc_connect_with_state (LDAP *ldap_struct, username and password to? */ rc = ldap_simple_bind_s(ldap_struct, ldap_state->bind_dn, ldap_state->bind_secret); - - GetTimeOfDay(&ldap_state->last_rebind); + + /* only set the last rebind timestamp when we did rebind after a + * non-read LDAP operation. That way we avoid the replication sleep + * after a simple redirected search operation - Guenther */ + + switch (request) { + + case LDAP_REQ_MODIFY: + case LDAP_REQ_ADD: + case LDAP_REQ_DELETE: + case LDAP_REQ_MODDN: + case LDAP_REQ_EXTENDED: + DEBUG(10,("rebindproc_connect_with_state: " + "setting last_rebind timestamp " + "(req: 0x%02x)\n", request)); + GetTimeOfDay(&ldap_state->last_rebind); + break; + default: + ZERO_STRUCT(ldap_state->last_rebind); + break; + } return rc; } |