/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/ |
H A D | SocketServer.php | 11 namespace FreeDSx\Socket; 13 use FreeDSx\Socket\Exception\ConnectionException; 20 class SocketServer extends Socket 35 * @var Socket[] 84 * @return null|Socket 86 public function accept($timeout = -1) : ?Socket 90 $socket = new Socket($socket, \array_merge($this->options, [ 96 return $socket instanceof Socket ? $socket : null; 114 * @return Socket[] 122 * @param Socket $socket [all …]
|
H A D | Socket.php | 11 namespace FreeDSx\Socket; 13 use FreeDSx\Socket\Exception\ConnectionException; 20 class Socket class 265 * @return Socket 268 public static function create(string $host, array $options = []) : Socket 278 * @return Socket 281 public static function tcp(string $host, array $options = []) : Socket 291 * @return Socket 294 public static function udp(string $host, array $options = []) : Socket
|
H A D | SocketPool.php | 11 namespace FreeDSx\Socket; 13 use FreeDSx\Socket\Exception\ConnectionException; 57 public function connect(string $hostname = '') : Socket 65 $tcp = Socket::create($host, $this->getTcpOptions());
|
H A D | MessageQueue.php | 11 namespace FreeDSx\Socket; 13 use FreeDSx\Socket\Queue\Asn1MessageQueue;
|
H A D | PduInterface.php | 11 namespace FreeDSx\Socket;
|
/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/Queue/ |
H A D | Asn1MessageQueue.php | 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 | 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 | 11 namespace FreeDSx\Socket\Queue;
|
H A D | Message.php | 11 namespace FreeDSx\Socket\Queue;
|
/plugin/pureldap/vendor/freedsx/socket/ |
H A D | README.md | 1 …Socket  
|
H A D | ClientProtocolHandler.php | 26 use FreeDSx\Socket\Exception\ConnectionException as SocketException; 27 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 | 182 "url": "https://github.com/FreeDSx/Socket.git", 187 …"url": "https://api.github.com/repos/FreeDSx/Socket/zipball/b517b61900c8cbb7b07a38338998c2c3682cde… 208 "FreeDSx\\Socket\\": "src/FreeDSx/Socket" 222 "homepage": "https://github.com/FreeDSx/Socket", 224 "Socket", 229 "issues": "https://github.com/FreeDSx/Socket/issues", 230 "source": "https://github.com/FreeDSx/Socket/tree/0.4.0"
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Queue/ |
H A D | ClientQueue.php | 19 use FreeDSx\Socket\Exception\ConnectionException; 20 use FreeDSx\Socket\Queue\Message; 21 use FreeDSx\Socket\SocketPool;
|
H A D | MessageWrapperInterface.php | 13 use FreeDSx\Socket\Queue\Buffer;
|
H A D | ServerQueue.php | 17 use FreeDSx\Socket\Queue\Message;
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Queue/MessageWrapper/ |
H A D | SaslMessageWrapper.php | 18 use FreeDSx\Socket\Exception\PartialMessageException; 19 use FreeDSx\Socket\Queue\Buffer;
|
/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/Exception/ |
H A D | ConnectionException.php | 11 namespace FreeDSx\Socket\Exception;
|
H A D | PartialMessageException.php | 11 namespace FreeDSx\Socket\Exception;
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/ServerRunner/ |
H A D | ServerRunnerInterface.php | 13 use FreeDSx\Socket\SocketServer;
|