Home
last modified time | relevance | path

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

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DSearchResultReference.php34 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 DExtendedResponse.php144 [$resultCode, $dn, $diagnosticMessage, $referrals] = self::parseResultData($type);
146 return new LdapResult($resultCode, $dn, $diagnosticMessage, ...$referrals);
H A DSearchResponse.php35 …::__construct($result->resultCode, $result->dn, $result->diagnosticMessage, ...$result->referrals);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DReferralContext.php25 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 DLdapResult.php107 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 DReferralException.php26 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 DClientReferralHandler.php55 $referrals = $result instanceof LdapResult ? $result->getReferrals() : [];
57 throw new ReferralException($message, ...$referrals);
/plugin/pureldap/vendor/freedsx/ldap/
H A DCHANGELOG.md43 * Throw an exception on referrals by default. Do not allow ignoring them, only following them.