/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/ |
H A D | SocketServer.php | 3 * 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 D | Socket.php | 3 * 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 D | SocketPool.php | 3 * 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 D | MessageQueue.php | 3 * This file is part of the FreeDSx Socket package. 11 namespace FreeDSx\Socket; 13 use FreeDSx\Socket\Queue\Asn1MessageQueue;
|
H A D | PduInterface.php | 3 * This file is part of the FreeDSx Socket package. 11 namespace FreeDSx\Socket;
|
/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/Queue/ |
H A D | Asn1MessageQueue.php | 3 * 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 D | MessageQueue.php | 3 * 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 D | Buffer.php | 3 * This file is part of the FreeDSx Socket package. 11 namespace FreeDSx\Socket\Queue;
|
H A D | Message.php | 3 * This file is part of the FreeDSx Socket package. 11 namespace FreeDSx\Socket\Queue;
|
/plugin/pureldap/vendor/freedsx/socket/ |
H A D | README.md | 1 # 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/Protocol/ |
H A D | LdapQueue.php | 20 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)
|
H A D | ClientProtocolHandler.php | 32 use FreeDSx\Socket\Exception\ConnectionException as SocketException; 33 use FreeDSx\Socket\SocketPool;
|
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/ |
H A D | UdpSocket.php | 15 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/recaptcha2/lib/ReCaptcha/RequestMethod/ |
H A D | SocketPost.php | 62 * @var Socket 71 public function __construct(Socket $socket = null) 76 $this->socket = new Socket();
|
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/net/ |
H A D | HTTPServer.php | 38 * @see Socket 41 class HTTPServer extends Socket {
|
H A D | HTTPClient.php | 38 * @see Socket 41 class HTTPClient extends Socket { 62 $this->Socket($host, $port);
|
H A D | Socket.php | 33 class Socket { class 47 function Socket($host, $port) { function in Socket
|
/plugin/pureldap/ |
H A D | composer.lock | 191 "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/ldap/src/FreeDSx/Ldap/Protocol/Queue/ |
H A D | ClientQueue.php | 24 use FreeDSx\Socket\Exception\ConnectionException; 25 use FreeDSx\Socket\Queue\Message; 26 use FreeDSx\Socket\SocketPool;
|
H A D | MessageWrapperInterface.php | 14 use FreeDSx\Socket\Queue\Buffer;
|
H A D | ServerQueue.php | 23 use FreeDSx\Socket\Exception\ConnectionException; 24 use FreeDSx\Socket\Queue\Message;
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Queue/MessageWrapper/ |
H A D | SaslMessageWrapper.php | 19 use FreeDSx\Socket\Exception\PartialMessageException; 20 use FreeDSx\Socket\Queue\Buffer;
|
/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/Exception/ |
H A D | ConnectionException.php | 3 * This file is part of the FreeDSx Socket package. 11 namespace FreeDSx\Socket\Exception;
|
H A D | PartialMessageException.php | 3 * This file is part of the FreeDSx Socket package. 11 namespace FreeDSx\Socket\Exception;
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/ServerRunner/ |
H A D | ServerRunnerInterface.php | 14 use FreeDSx\Socket\SocketServer;
|