/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/ |
D | SearchResultReference.php | 36 protected $referrals = []; variable in FreeDSx\\Ldap\\Operation\\Response\\SearchResultReference 41 public function __construct(LdapUrl ...$referrals) argument 43 $this->referrals = $referrals; 51 return $this->referrals; 60 $referrals = []; 64 $referrals[] = LdapUrl::parse($referral->getValue()); 70 return new self(...$referrals); 81 }, $this->referrals)));
|
D | ExtendedResponse.php | 155 [$resultCode, $dn, $diagnosticMessage, $referrals] = self::parseResultData($type); 157 return new LdapResult($resultCode, $dn, $diagnosticMessage, ...$referrals);
|
D | SearchResponse.php | 36 …::__construct($result->resultCode, $result->dn, $result->diagnosticMessage, ...$result->referrals);
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ |
D | ReferralContext.php | 29 protected $referrals = []; variable in FreeDSx\\Ldap\\Protocol\\ReferralContext 34 public function __construct(LdapUrl ...$referrals) argument 36 $this->referrals = $referrals; 44 return $this->referrals; 53 $this->referrals[] = $referral; 64 foreach ($this->referrals as $referral) { 79 return count($this->referrals);
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/ |
D | LdapResult.php | 111 protected $referrals = []; variable in FreeDSx\\Ldap\\Operation\\LdapResult 113 …_construct(int $resultCode, string $dn = '', string $diagnosticMessage = '', LdapUrl ...$referrals) argument 118 $this->referrals = $referrals; 142 return $this->referrals; 164 if (count($this->referrals) !== 0) { 167 }, $this->referrals)))); 183 [$resultCode, $dn, $diagnosticMessage, $referrals] = self::parseResultData($type); 185 return new static($resultCode, $dn, $diagnosticMessage, ...$referrals); 200 $referrals = []; 215 $referrals[] = LdapUrl::parse($ldapUrl->getValue()); [all …]
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Exception/ |
D | ReferralException.php | 28 protected $referrals; variable in FreeDSx\\Ldap\\Exception\\ReferralException 34 public function __construct(string $diagnostic, LdapUrl ...$referrals) argument 36 $this->referrals = $referrals; 45 return $this->referrals;
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/ |
D | ClientReferralHandler.php | 69 $referrals = $result instanceof LdapResult ? $result->getReferrals() : []; 71 throw new ReferralException($message, ...$referrals);
|
/plugin/pureldap/vendor/freedsx/ldap/ |
D | CHANGELOG.md | 65 * Throw an exception on referrals by default. Do not allow ignoring them, only following them.
|