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.218.99.99
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 /
Handler /
Delete
Unzip
Name
Size
Permission
Date
Action
CurlFactory.php
21.55
KB
-rw-r--r--
2020-11-17 16:24
CurlFactoryInterface.php
657
B
-rw-r--r--
2020-11-17 16:24
CurlHandler.php
1.25
KB
-rw-r--r--
2020-11-17 16:24
CurlMultiHandler.php
7.31
KB
-rw-r--r--
2020-11-17 16:24
EasyHandle.php
3.09
KB
-rw-r--r--
2020-11-17 16:24
MockHandler.php
6.26
KB
-rw-r--r--
2020-11-17 16:24
Proxy.php
2.23
KB
-rw-r--r--
2020-11-17 16:24
StreamHandler.php
18.08
KB
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?php namespace GuzzleHttp\Handler; use GuzzleHttp\Promise\PromiseInterface; use Psr\Http\Message\RequestInterface; /** * HTTP handler that uses cURL easy handles as a transport layer. * * When using the CurlHandler, custom curl options can be specified as an * associative array of curl option constants mapping to values in the * **curl** key of the "client" key of the request. * * @final */ class CurlHandler { /** * @var CurlFactoryInterface */ private $factory; /** * Accepts an associative array of options: * * - factory: Optional curl factory used to create cURL handles. * * @param array $options Array of options to use with the handler */ public function __construct(array $options = []) { $this->factory = $options['handle_factory'] ?? new CurlFactory(3); } public function __invoke(RequestInterface $request, array $options): PromiseInterface { if (isset($options['delay'])) { \usleep($options['delay'] * 1000); } $easy = $this->factory->create($request, $options); \curl_exec($easy->handle); $easy->errno = \curl_errno($easy->handle); return CurlFactory::finish($this, $easy, $this->factory); } }