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.15.22.62
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-websocket /
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; use React\EventLoop\LoopInterface; use React\Promise\Timer; use React\Promise\Timer\TimeoutException; final class TimeoutConnector implements ConnectorInterface { private $connector; private $timeout; private $loop; public function __construct(ConnectorInterface $connector, $timeout, LoopInterface $loop) { $this->connector = $connector; $this->timeout = $timeout; $this->loop = $loop; } public function connect($uri) { return Timer\timeout($this->connector->connect($uri), $this->timeout, $this->loop)->then(null, self::handler($uri)); } /** * Creates a static rejection handler that reports a proper error message in case of a timeout. * * This uses a private static helper method to ensure this closure is not * bound to this instance and the exception trace does not include a * reference to this instance and its connector stack as a result. * * @param string $uri * @return callable */ private static function handler($uri) { return function (\Exception $e) use ($uri) { if ($e instanceof TimeoutException) { throw new \RuntimeException( 'Connection to ' . $uri . ' timed out after ' . $e->getTimeout() . ' seconds', \defined('SOCKET_ETIMEDOUT') ? \SOCKET_ETIMEDOUT : 0 ); } throw $e; }; } }