Home
last modified time | relevance | path

Searched refs:ldapConnection (Results 1 – 1 of 1) sorted by relevance

/dokuwiki/lib/plugins/authad/adLDAP/
H A DadLDAP.php175 protected $ldapConnection; variable in adLDAP
184 if ($this->ldapConnection) {
185 return $this->ldapConnection;
628 $this->ldapConnection = ldap_connect("ldaps://" . $domainController, $this->adPort);
630 $this->ldapConnection = ldap_connect($domainController, $this->adPort);
634 ldap_set_option($this->ldapConnection, LDAP_OPT_PROTOCOL_VERSION, 3);
635 ldap_set_option($this->ldapConnection, LDAP_OPT_REFERRALS, 0);
638 ldap_start_tls($this->ldapConnection);
643 $this->ldapBind = @ldap_bind($this->ldapConnection, $this->adminUsername . $this->accountSuffix, $this->adminPassword);
656 $this->ldapBind = @ldap_sasl_bind($this->ldapConnection, NUL
[all...]