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 : 18.219.197.162
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
guzzlehttp /
guzzle /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Cookie
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Exception
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Handler
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
BodySummarizer.php
631
B
-rw-r--r--
2020-11-17 16:24
BodySummarizerInterface.php
233
B
-rw-r--r--
2020-11-17 16:24
Client.php
17.76
KB
-rw-r--r--
2020-11-17 16:24
ClientInterface.php
2.83
KB
-rw-r--r--
2020-11-17 16:24
ClientTrait.php
8.79
KB
-rw-r--r--
2020-11-17 16:24
HandlerStack.php
8.26
KB
-rw-r--r--
2020-11-17 16:24
MessageFormatter.php
7.62
KB
-rw-r--r--
2020-11-17 16:24
MessageFormatterInterface.php
561
B
-rw-r--r--
2020-11-17 16:24
Middleware.php
10.9
KB
-rw-r--r--
2020-11-17 16:24
Pool.php
4.61
KB
-rw-r--r--
2020-11-17 16:24
PrepareBodyMiddleware.php
3.07
KB
-rw-r--r--
2020-11-17 16:24
RedirectMiddleware.php
7.5
KB
-rw-r--r--
2020-11-17 16:24
RequestOptions.php
10.32
KB
-rw-r--r--
2020-11-17 16:24
RetryMiddleware.php
3.52
KB
-rw-r--r--
2020-11-17 16:24
TransferStats.php
3.14
KB
-rw-r--r--
2020-11-17 16:24
Utils.php
13
KB
-rw-r--r--
2020-11-17 16:24
functions.php
5.56
KB
-rw-r--r--
2020-11-17 16:24
functions_include.php
162
B
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?php namespace GuzzleHttp; use GuzzleHttp\Promise as P; use GuzzleHttp\Promise\PromiseInterface; use Psr\Http\Message\RequestInterface; use Psr\Http\Message\ResponseInterface; /** * Middleware that retries requests based on the boolean result of * invoking the provided "decider" function. * * @final */ class RetryMiddleware { /** * @var callable(RequestInterface, array): PromiseInterface */ private $nextHandler; /** * @var callable */ private $decider; /** * @var callable(int) */ private $delay; /** * @param callable $decider Function that accepts the number of retries, * a request, [response], and [exception] and * returns true if the request is to be * retried. * @param callable(RequestInterface, array): PromiseInterface $nextHandler Next handler to invoke. * @param null|callable(int): int $delay Function that accepts the number of retries * and returns the number of * milliseconds to delay. */ public function __construct(callable $decider, callable $nextHandler, callable $delay = null) { $this->decider = $decider; $this->nextHandler = $nextHandler; $this->delay = $delay ?: __CLASS__ . '::exponentialDelay'; } /** * Default exponential backoff delay function. * * @return int milliseconds. */ public static function exponentialDelay(int $retries): int { return (int) \pow(2, $retries - 1) * 1000; } public function __invoke(RequestInterface $request, array $options): PromiseInterface { if (!isset($options['retries'])) { $options['retries'] = 0; } $fn = $this->nextHandler; return $fn($request, $options) ->then( $this->onFulfilled($request, $options), $this->onRejected($request, $options) ); } /** * Execute fulfilled closure */ private function onFulfilled(RequestInterface $request, array $options): callable { return function ($value) use ($request, $options) { if (!($this->decider)( $options['retries'], $request, $value, null )) { return $value; } return $this->doRetry($request, $options, $value); }; } /** * Execute rejected closure */ private function onRejected(RequestInterface $req, array $options): callable { return function ($reason) use ($req, $options) { if (!($this->decider)( $options['retries'], $req, null, $reason )) { return P\Create::rejectionFor($reason); } return $this->doRetry($req, $options); }; } private function doRetry(RequestInterface $request, array $options, ResponseInterface $response = null): PromiseInterface { $options['delay'] = ($this->delay)(++$options['retries'], $response); return $this($request, $options); } }