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/
DSearchResultReference.php36 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)));
DExtendedResponse.php155 [$resultCode, $dn, $diagnosticMessage, $referrals] = self::parseResultData($type);
157 return new LdapResult($resultCode, $dn, $diagnosticMessage, ...$referrals);
DSearchResponse.php36 …::__construct($result->resultCode, $result->dn, $result->diagnosticMessage, ...$result->referrals);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
DReferralContext.php29 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/
DLdapResult.php111 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/
DReferralException.php28 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/
DClientReferralHandler.php69 $referrals = $result instanceof LdapResult ? $result->getReferrals() : [];
71 throw new ReferralException($message, ...$referrals);
/plugin/pureldap/vendor/freedsx/ldap/
DCHANGELOG.md65 * Throw an exception on referrals by default. Do not allow ignoring them, only following them.