Home
last modified time | relevance | path

Searched refs:Socket (Results 1 – 25 of 33) sorted by last modified time

12

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/
H A DUdpSocket.php15 use Socket; alias
25 /** @var resource|Socket|null */
54 if (is_resource($this->socket) || $this->socket instanceof Socket) {
62 if (!is_resource($this->socket) && !$this->socket instanceof Socket) {
/plugin/pureldap/
H A Dcomposer.lock191 "url": "https://github.com/FreeDSx/Socket.git",
196 "url": "https://api.github.com/repos/FreeDSx/Socket/zipball/3a4949f39d87fe70a0fc838d47aaf0bf8c900c3e",
216 "FreeDSx\\Socket\\": "src/FreeDSx/Socket"
230 "homepage": "https://github.com/FreeDSx/Socket",
232 "Socket",
237 "issues": "https://github.com/FreeDSx/Socket/issues",
238 "source": "https://github.com/FreeDSx/Socket/tree/0.5.2"
/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/Queue/
H A DMessageQueue.php3 * This file is part of the FreeDSx Socket package.
11 namespace FreeDSx\Socket\Queue;
13 use FreeDSx\Socket\Exception\ConnectionException;
14 use FreeDSx\Socket\Exception\PartialMessageException;
15 use FreeDSx\Socket\Socket; alias
25 * @var Socket
40 * @param Socket $socket
42 public function __construct(Socket $socket)
H A DAsn1MessageQueue.php3 * This file is part of the FreeDSx Socket package.
11 namespace FreeDSx\Socket\Queue;
15 use FreeDSx\Socket\Exception\PartialMessageException;
16 use FreeDSx\Socket\PduInterface;
17 use FreeDSx\Socket\Socket; alias
37 * @param Socket $socket
41 public function __construct(Socket $socket, EncoderInterface $encoder, ?string $pduClass = null)
H A DBuffer.php3 * This file is part of the FreeDSx Socket package.
11 namespace FreeDSx\Socket\Queue;
H A DMessage.php3 * This file is part of the FreeDSx Socket package.
11 namespace FreeDSx\Socket\Queue;
/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/
H A DSocketPool.php3 * This file is part of the FreeDSx Socket package.
11 namespace FreeDSx\Socket;
13 use FreeDSx\Socket\Exception\ConnectionException;
16 * Given a selection of hosts, connect to one and return the Socket.
58 public function connect(string $hostname = '') : Socket
66 $socket = Socket::create(
H A DSocket.php3 * This file is part of the FreeDSx Socket package.
11 namespace FreeDSx\Socket;
13 use FreeDSx\Socket\Exception\ConnectionException;
20 class Socket class
271 * @return Socket
274 public static function create(string $host, array $options = []) : Socket
284 * @return Socket
290 ): Socket {
305 * @return Socket
308 public static function tcp(string $host, array $options = []) : Socket
[all...]
H A DSocketServer.php3 * This file is part of the FreeDSx Socket package.
11 namespace FreeDSx\Socket;
13 use FreeDSx\Socket\Exception\ConnectionException;
20 class SocketServer extends Socket
45 * @var Socket[]
122 * @return null|Socket
124 public function accept(int $timeout = -1): ?Socket
128 $socket = new Socket($socket, \array_merge($this->options, [
134 return $socket instanceof Socket ? $socket : null;
157 * @return Socket[]
[all...]
H A DMessageQueue.php3 * This file is part of the FreeDSx Socket package.
11 namespace FreeDSx\Socket;
13 use FreeDSx\Socket\Queue\Asn1MessageQueue;
H A DPduInterface.php3 * This file is part of the FreeDSx Socket package.
11 namespace FreeDSx\Socket;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DClientProtocolHandler.php32 use FreeDSx\Socket\Exception\ConnectionException as SocketException;
33 use FreeDSx\Socket\SocketPool;
H A DLdapMessage.php29 use FreeDSx\Socket\PduInterface;
H A DLdapQueue.php20 use FreeDSx\Socket\Exception\ConnectionException;
21 use FreeDSx\Socket\Queue\Asn1MessageQueue; alias
22 use FreeDSx\Socket\Queue\Buffer;
23 use FreeDSx\Socket\Socket;
45 * @var Socket
54 public function __construct(Socket $socket, EncoderInterface $encoder = null)
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Queue/
H A DClientQueue.php24 use FreeDSx\Socket\Exception\ConnectionException;
25 use FreeDSx\Socket\Queue\Message;
26 use FreeDSx\Socket\SocketPool;
H A DMessageWrapperInterface.php14 use FreeDSx\Socket\Queue\Buffer;
H A DServerQueue.php23 use FreeDSx\Socket\Exception\ConnectionException;
24 use FreeDSx\Socket\Queue\Message;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Queue/MessageWrapper/
H A DSaslMessageWrapper.php19 use FreeDSx\Socket\Exception\PartialMessageException;
20 use FreeDSx\Socket\Queue\Buffer;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/ServerRunner/
H A DPcntlServerRunner.php22 use FreeDSx\Socket\Socket;
23 use FreeDSx\Socket\SocketServer;
358 Socket $socket,
388 * When a new Socket is received, we do the following:
396 Socket $socket
H A DServerRunnerInterface.php14 use FreeDSx\Socket\SocketServer;
/plugin/pureldap/vendor/freedsx/socket/
H A DREADME.md1 # FreeDSx Socket ![](https://github.com/FreeDSx/Socket/workflows/Analysis/badge.svg) ![](https://github.com/FreeDSx/Socket/workflows/Build/badge.svg) [![codecov](https://codecov.io/gh/FreeDSx/Socket/branch/master/graph/badge.svg)](https://codecov.io/gh/FreeDSx/Socket)
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapServer.php22 use FreeDSx\Socket\Exception\ConnectionException;
23 use FreeDSx\Socket\SocketServer;
/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/Exception/
H A DConnectionException.php3 * This file is part of the FreeDSx Socket package.
11 namespace FreeDSx\Socket\Exception;
H A DPartialMessageException.php3 * This file is part of the FreeDSx Socket package.
11 namespace FreeDSx\Socket\Exception;
/plugin/pureldap/vendor/freedsx/ldap/
H A DCHANGELOG.md52 * Fix an issue with the Socket class not recognizing the certificate authority cert specified in the options.
54 * Moved the Socket classes to their own library so it can be used in other projects.

12