mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-13 01:37:02 +02:00
Use LDAP over StartTLS if option LDAP_USE_START_TLS is set.
This commit is contained in:
@ -12,6 +12,10 @@ class LDAP {
|
||||
ldap_set_option($this->link, LDAP_OPT_PROTOCOL_VERSION, 3);
|
||||
ldap_set_option($this->link, LDAP_OPT_REFERRALS, 0);
|
||||
|
||||
if (LDAP_USE_START_TLS == 1) {
|
||||
ldap_start_tls($this->link);
|
||||
}
|
||||
|
||||
if(@ldap_bind($this->link, $binddn, $bindpw)) {
|
||||
$this->bind = 1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user