OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
znew1aws-ses
/
vendor
/
guzzlehttp
/
guzzle
/
src
/
Handler
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/16/2024 08:30:14 AM
rwxr-xr-x
📄
CurlFactory.php
24.75 KB
08/16/2024 08:30:15 AM
rw-r--r--
📄
CurlFactoryInterface.php
682 bytes
08/16/2024 08:30:15 AM
rw-r--r--
📄
CurlHandler.php
1.35 KB
08/16/2024 08:30:15 AM
rw-r--r--
📄
CurlMultiHandler.php
8.1 KB
08/16/2024 08:30:15 AM
rw-r--r--
📄
EasyHandle.php
2.94 KB
08/16/2024 08:30:15 AM
rw-r--r--
📄
HeaderProcessor.php
1.07 KB
08/16/2024 08:30:15 AM
rw-r--r--
📄
MockHandler.php
6.47 KB
08/16/2024 08:30:15 AM
rw-r--r--
📄
Proxy.php
2.28 KB
08/16/2024 08:30:15 AM
rw-r--r--
📄
StreamHandler.php
21.43 KB
08/16/2024 08:30:15 AM
rw-r--r--
Editing: CurlFactoryInterface.php
Close
<?php namespace GuzzleHttp\Handler; use Psr\Http\Message\RequestInterface; interface CurlFactoryInterface { /** * Creates a cURL handle resource. * * @param RequestInterface $request Request * @param array $options Transfer options * * @throws \RuntimeException when an option cannot be applied */ public function create(RequestInterface $request, array $options): EasyHandle; /** * Release an easy handle, allowing it to be reused or closed. * * This function must call unset on the easy handle's "handle" property. */ public function release(EasyHandle $easy): void; }