Home
last modified time | relevance | path

Searched refs:LdapMessageResponse (Results 1 – 21 of 21) sorted by path

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapClient.php28 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
89 * @return LdapMessageResponse
92 public function bind(string $username, string $password): LdapMessageResponse
102 * @return LdapMessageResponse
107 public function bindSasl(array $options = [], string $mechanism = ''): LdapMessageResponse
135 * @return LdapMessageResponse
138 public function create(Entry $entry, Control ...$controls): LdapMessageResponse
194 * @return LdapMessageResponse
197 public function delete(string $entry, Control ...$controls): LdapMessageResponse
207 * @return LdapMessageResponse
26 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DClientProtocolHandler.php137 * @return LdapMessageResponse|null
148 public function send(RequestInterface $request, Control ...$controls): ?LdapMessageResponse
H A DLdapMessageResponse.php25 class LdapMessageResponse extends LdapMessage
24 class LdapMessageResponse extends LdapMessage global() class
H A DLdapQueue.php182 if ($message->getMessageId() === 0 && $message instanceof LdapMessageResponse && $message->getResponse() instanceof ExtendedResponse) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/
H A DClientBasicHandler.php23 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
48 * @return LdapMessageResponse
54 public function handleRequest(ClientProtocolContext $context): ?LdapMessageResponse
65 * @param LdapMessageResponse $messageFrom
68 * @return LdapMessageResponse
72 public function handleResponse(LdapMessageRequest $messageTo, LdapMessageResponse $messageFrom, ClientQueue $queue, array $options): ?LdapMessageResponse
19 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
H A DClientExtendedOperationHandler.php21 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
45 * @return LdapMessageResponse|null
54 public function handleRequest(ClientProtocolContext $context): ?LdapMessageResponse
71 $prop = (new ReflectionClass(LdapMessageResponse::class))->getProperty('response');
16 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
H A DClientReferralHandler.php29 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
51 * @param LdapMessageResponse $messageFrom
54 * @return LdapMessageResponse|null
60 LdapMessageResponse $messageFrom,
63 ): ?LdapMessageResponse {
84 * @param LdapMessageResponse $messageFrom
85 * @return LdapMessageResponse|null
90 protected function followReferral(LdapMessageRequest $messageTo, LdapMessageResponse $messageFrom): ?LdapMessageResponse
27 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
H A DClientSaslBindHandler.php26 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
61 * @return LdapMessageResponse|null
72 public function handleRequest(ClientProtocolContext $context): ?LdapMessageResponse
86 /** @var LdapMessageResponse $response */
147 * @return LdapMessageResponse
160 ): ?LdapMessageResponse {
191 * @return LdapMessageResponse
197 protected function sendRequestGetResponse(SaslBindRequest $request, ClientQueue $queue): LdapMessageResponse
202 /** @var LdapMessageResponse $messageFrom */
20 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
H A DClientSearchHandler.php26 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
39 * @return LdapMessageResponse|null
45 public function handleRequest(ClientProtocolContext $context): ?LdapMessageResponse
58 * @param LdapMessageResponse $messageFrom
61 * @return LdapMessageResponse|null
68 public function handleResponse(LdapMessageRequest $messageTo, LdapMessageResponse $messageFrom, ClientQueue $queue, array $options): ?LdapMessageResponse
86 $finalResponse = new LdapMessageResponse(
21 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
H A DClientStartTlsHandler.php18 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
30 * @param LdapMessageResponse $messageFrom
33 * @return LdapMessageResponse
37 public function handleResponse(LdapMessageRequest $messageTo, LdapMessageResponse $messageFrom, ClientQueue $queue, array $options): ?LdapMessageResponse
17 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
H A DClientUnbindHandler.php15 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
33 public function handleRequest(ClientProtocolContext $context): ?LdapMessageResponse
13 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
H A DRequestHandlerInterface.php16 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
32 public function handleRequest(ClientProtocolContext $context): ?LdapMessageResponse;
15 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
H A DResponseHandlerInterface.php15 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
29 public function handleResponse(LdapMessageRequest $messageTo, LdapMessageResponse $messageFrom, ClientQueue $queue, array $options): ?LdapMessageResponse;
14 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Factory/
H A DResponseFactory.php33 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
45 public function getStandardResponse(LdapMessageRequest $message, int $resultCode = ResultCode::SUCCESS, string $diagnostic = ''): LdapMessageResponse
70 return new LdapMessageResponse(
79 public function getExtendedError(string $message, int $errorCode, ?string $responseName = null): LdapMessageResponse
81 return new LdapMessageResponse(
32 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Queue/
H A DClientQueue.php22 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
59 public function getMessage(?int $id = null): LdapMessageResponse
64 if (!$message instanceof LdapMessageResponse) {
66 'Expected an instance of LdapMessageResponse but got: %s',
131 return LdapMessageResponse::fromAsn1($message->getMessage());
17 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
H A DServerQueue.php21 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
46 'Expected an instance of LdapMessageResponse but got: %s',
55 * @param LdapMessageResponse ...$response
59 public function sendMessage(LdapMessageResponse ...$response): self
15 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ServerProtocolHandler/
H A DServerRootDseHandler.php23 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
98 new LdapMessageResponse(
102 new LdapMessageResponse(
20 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
H A DServerSearchHandler.php19 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
H A DServerStartTlsHandler.php20 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
59 $queue->sendMessage(new LdapMessageResponse($message->getMessageId(), new ExtendedResponse(
68 $queue->sendMessage(new LdapMessageResponse($message->getMessageId(), new ExtendedResponse(
76 $queue->sendMessage(new LdapMessageResponse($message->getMessageId(), new ExtendedResponse(
18 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
H A DServerWhoAmIHandler.php21 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
49 $queue->sendMessage(new LdapMessageResponse(
18 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DDirSync.php25 use FreeDSx\Ldap\Protocol\LdapMessageResponse;
151 /** @var LdapMessageResponse $response */
22 use FreeDSx\Ldap\Protocol\LdapMessageResponse; global() alias