/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/ |
H A D | ClientBasicHandler.php | 17 use FreeDSx\Ldap\Operation\ResultCode; alias 33 ResultCode::SUCCESS, 34 ResultCode::COMPARE_FALSE, 35 ResultCode::COMPARE_TRUE, 36 ResultCode::REFERRAL, 37 ResultCode::SASL_BIND_IN_PROGRESS, 60 if (!$result instanceof LdapResult || $result->getResultCode() === ResultCode::SUCCESS) {
|
H A D | ClientSaslBindHandler.php | 18 use FreeDSx\Ldap\Operation\ResultCode; alias 77 if ($saslResponse->getResultCode() !== ResultCode::SASL_BIND_IN_PROGRESS) { 84 && $response->getResponse()->getResultCode() === ResultCode::SUCCESS 135 … if ($saslResponse->getResultCode() === ResultCode::SUCCESS && $context->hasSecurityLayer()) { 159 if ($response->getResultCode() === ResultCode::SUCCESS) { 163 return $response->getResultCode() !== ResultCode::SASL_BIND_IN_PROGRESS;
|
H A D | ClientStartTlsHandler.php | 15 use FreeDSx\Ldap\Operation\ResultCode; alias 35 if ($response->getResultCode() !== ResultCode::SUCCESS) {
|
H A D | ClientReferralHandler.php | 25 use FreeDSx\Ldap\Operation\ResultCode; alias 82 ResultCode::REFERRAL 145 if ($e->getCode() === ResultCode::REFERRAL) { 159 ), ResultCode::REFERRAL);
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ServerProtocolHandler/ |
H A D | ServerStartTlsHandler.php | 16 use FreeDSx\Ldap\Operation\ResultCode; alias 50 new LdapResult(ResultCode::PROTOCOL_ERROR), 59 …new LdapResult(ResultCode::OPERATIONS_ERROR, '', 'The current LDAP session is already encrypted.'), 67 new LdapResult(ResultCode::SUCCESS),
|
H A D | ServerBindHandler.php | 17 use FreeDSx\Ldap\Operation\ResultCode; alias 60 ResultCode::INVALID_CREDENTIALS 76 ResultCode::PROTOCOL_ERROR
|
H A D | ServerWhoAmIHandler.php | 16 use FreeDSx\Ldap\Operation\ResultCode; alias 48 new ExtendedResponse(new LdapResult(ResultCode::SUCCESS), null, $userId)
|
H A D | ServerSearchHandler.php | 17 use FreeDSx\Ldap\Operation\ResultCode; alias 57 new SearchResultDone(ResultCode::SUCCESS)
|
H A D | ServerDispatchHandler.php | 15 use FreeDSx\Ldap\Operation\ResultCode; alias 52 ResultCode::NO_SUCH_OPERATION
|
H A D | ServerRootDseHandler.php | 18 use FreeDSx\Ldap\Operation\ResultCode; alias 76 new SearchResultDone(ResultCode::SUCCESS)
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ |
H A D | ServerProtocolHandler.php | 17 use FreeDSx\Ldap\Operation\ResultCode; alias 172 ResultCode::INSUFFICIENT_ACCESS_RIGHTS, 186 ResultCode::PROTOCOL_ERROR 194 ResultCode::PROTOCOL_ERROR 213 ResultCode::AUTH_METHOD_UNSUPPORTED 229 ResultCode::PROTOCOL_ERROR,
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Exception/ |
H A D | OperationException.php | 13 use FreeDSx\Ldap\Operation\ResultCode; alias 24 …public function __construct(string $message = '', int $code = ResultCode::OPERATIONS_ERROR, \Throw…
|
H A D | ReferralException.php | 14 use FreeDSx\Ldap\Operation\ResultCode; alias 35 parent::__construct($diagnostic, ResultCode::REFERRAL);
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Factory/ |
H A D | ServerBindHandlerFactory.php | 17 use FreeDSx\Ldap\Operation\ResultCode; alias 43 ResultCode::AUTH_METHOD_UNSUPPORTED
|
H A D | ResponseFactory.php | 30 use FreeDSx\Ldap\Operation\ResultCode; alias 44 …public function getStandardResponse(LdapMessageRequest $message, int $resultCode = ResultCode::SUC… 66 return $this->getExtendedError('Invalid request.', ResultCode::OPERATIONS_ERROR);
|
H A D | ClientProtocolHandlerFactory.php | 16 use FreeDSx\Ldap\Operation\ResultCode; alias 55 …$response instanceof Operation\LdapResult && $response->getResultCode() === ResultCode::REFERRAL) {
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/RequestHandler/ |
H A D | ProxyRequestHandler.php | 25 use FreeDSx\Ldap\Operation\ResultCode; alias 105 throw new OperationException('The result was malformed.', ResultCode::PROTOCOL_ERROR); 108 return $response->getResultCode() === ResultCode::COMPARE_TRUE;
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/ |
H A D | LdapClient.php | 24 use FreeDSx\Ldap\Operation\ResultCode; alias 123 return $response->getResultCode() === ResultCode::COMPARE_TRUE; 156 if ($e->getCode() === ResultCode::NO_SUCH_OBJECT) { 179 ), ResultCode::NO_SUCH_OBJECT);
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/ |
H A D | ResultCode.php | 18 class ResultCode class
|