Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.145.80.161
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-test /
vendor /
react /
socket /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Connection.php
5.61
KB
-rw-r--r--
2018-10-01 12:20
ConnectionInterface.php
4.32
KB
-rw-r--r--
2018-10-01 12:20
Connector.php
4.2
KB
-rw-r--r--
2018-10-01 12:20
ConnectorInterface.php
2.01
KB
-rw-r--r--
2018-10-01 12:20
DnsConnector.php
4.41
KB
-rw-r--r--
2018-10-01 12:20
FixedUriConnector.php
1.02
KB
-rw-r--r--
2018-10-01 12:20
LimitingServer.php
6.39
KB
-rw-r--r--
2018-10-01 12:20
SecureConnector.php
2.98
KB
-rw-r--r--
2018-10-01 12:20
SecureServer.php
6.68
KB
-rw-r--r--
2018-10-01 12:20
Server.php
1.83
KB
-rw-r--r--
2018-10-01 12:20
ServerInterface.php
5.13
KB
-rw-r--r--
2018-10-01 12:20
StreamEncryption.php
5.4
KB
-rw-r--r--
2018-10-01 12:20
TcpConnector.php
4.25
KB
-rw-r--r--
2018-10-01 12:20
TcpServer.php
7.39
KB
-rw-r--r--
2018-10-01 12:20
TimeoutConnector.php
1.45
KB
-rw-r--r--
2018-10-01 12:20
UnixConnector.php
1.11
KB
-rw-r--r--
2018-10-01 12:20
UnixServer.php
4.11
KB
-rw-r--r--
2018-10-01 12:20
Save
Rename
<?php namespace React\Socket; /** * Decorates an existing Connector to always use a fixed, preconfigured URI * * This can be useful for consumers that do not support certain URIs, such as * when you want to explicitly connect to a Unix domain socket (UDS) path * instead of connecting to a default address assumed by an higher-level API: * * ```php * $connector = new FixedUriConnector( * 'unix:///var/run/docker.sock', * new UnixConnector($loop) * ); * * // destination will be ignored, actually connects to Unix domain socket * $promise = $connector->connect('localhost:80'); * ``` */ class FixedUriConnector implements ConnectorInterface { private $uri; private $connector; /** * @param string $uri * @param ConnectorInterface $connector */ public function __construct($uri, ConnectorInterface $connector) { $this->uri = $uri; $this->connector = $connector; } public function connect($_) { return $this->connector->connect($this->uri); } }