/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/ |
H A D | SearchResultReference.php | 34 protected $referrals = []; variable in FreeDSx\\Ldap\\Operation\\Response\\SearchResultReference 39 public function __construct(LdapUrl ...$referrals) argument 41 $this->referrals = $referrals; 49 return $this->referrals; 57 $referrals = []; 62 $referrals[] = LdapUrl::parse($referral->getValue()); 68 return new self(...$referrals); 79 }, $this->referrals)));
|
H A D | ExtendedResponse.php | 144 [$resultCode, $dn, $diagnosticMessage, $referrals] = self::parseResultData($type); 146 return new LdapResult($resultCode, $dn, $diagnosticMessage, ...$referrals);
|
H A D | SearchResponse.php | 35 …::__construct($result->resultCode, $result->dn, $result->diagnosticMessage, ...$result->referrals);
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ |
H A D | ReferralContext.php | 25 protected $referrals = []; variable in FreeDSx\\Ldap\\Protocol\\ReferralContext 30 public function __construct(LdapUrl ...$referrals) argument 32 $this->referrals = $referrals; 40 return $this->referrals; 49 $this->referrals[] = $referral; 60 foreach ($this->referrals as $referral) { 74 return \count($this->referrals);
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/ |
H A D | LdapResult.php | 107 protected $referrals = []; variable in FreeDSx\\Ldap\\Operation\\LdapResult 109 …_construct(int $resultCode, string $dn = '', string $diagnosticMessage = '', LdapUrl ...$referrals) argument 114 $this->referrals = $referrals; 138 return $this->referrals; 159 if (\count($this->referrals) !== 0) { 162 }, $this->referrals)))); 176 [$resultCode, $dn, $diagnosticMessage, $referrals] = self::parseResultData($type); 178 return new static($resultCode, $dn, $diagnosticMessage, ...$referrals); 191 $referrals = []; 206 $referrals[] = LdapUrl::parse($ldapUrl->getValue()); [all …]
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Exception/ |
H A D | ReferralException.php | 26 protected $referrals; variable in FreeDSx\\Ldap\\Exception\\ReferralException 32 public function __construct(string $diagnostic, LdapUrl ...$referrals) argument 34 $this->referrals = $referrals; 43 return $this->referrals;
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/ |
H A D | ClientReferralHandler.php | 55 $referrals = $result instanceof LdapResult ? $result->getReferrals() : []; 57 throw new ReferralException($message, ...$referrals);
|
/plugin/pureldap/vendor/freedsx/ldap/ |
H A D | CHANGELOG.md | 43 * Throw an exception on referrals by default. Do not allow ignoring them, only following them.
|