Skip to content
Snippets Groups Projects
Commit a063f79b authored by Olav Morken's avatar Olav Morken
Browse files

SimpleSAML_Auth_LDAP: Don't set timeout options to 0.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1680 44740490-163a-0410-bde0-09ae8108e29a
parent c6156658
No related branches found
No related tags found
No related merge requests found
...@@ -71,10 +71,12 @@ class SimpleSAML_Auth_LDAP { ...@@ -71,10 +71,12 @@ class SimpleSAML_Auth_LDAP {
// (OpenLDAP 2.x.x or Netscape Directory SDK x.x needed). // (OpenLDAP 2.x.x or Netscape Directory SDK x.x needed).
// TODO: Should these be moved to before ldap_connect() above? // TODO: Should these be moved to before ldap_connect() above?
$this->timeout = $timeout; $this->timeout = $timeout;
if (!@ldap_set_option($this->ldap, LDAP_OPT_NETWORK_TIMEOUT, $timeout)) if ($timeout > 0) {
SimpleSAML_Logger::warning('Library - LDAP __construct(): Unable to set timeouts (LDAP_OPT_NETWORK_TIMEOUT) to ' . $timeout); if (!@ldap_set_option($this->ldap, LDAP_OPT_NETWORK_TIMEOUT, $timeout))
if (!@ldap_set_option($this->ldap, LDAP_OPT_TIMELIMIT, $timeout)) SimpleSAML_Logger::warning('Library - LDAP __construct(): Unable to set timeouts (LDAP_OPT_NETWORK_TIMEOUT) to ' . $timeout);
SimpleSAML_Logger::warning('Library - LDAP __construct(): Unable to set timeouts (LDAP_OPT_TIMELIMIT) to ' . $timeout); if (!@ldap_set_option($this->ldap, LDAP_OPT_TIMELIMIT, $timeout))
SimpleSAML_Logger::warning('Library - LDAP __construct(): Unable to set timeouts (LDAP_OPT_TIMELIMIT) to ' . $timeout);
}
// Enable TLS, if needed. // Enable TLS, if needed.
if (!preg_match("/ldaps:/i", $hostname) and $enable_tls) if (!preg_match("/ldaps:/i", $hostname) and $enable_tls)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment