OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
Xpress
/
vendor
/
guzzlehttp
/
guzzle
/
src
/
Handler
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📄
CurlFactory.php
24.75 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
CurlFactoryInterface.php
682 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
CurlHandler.php
1.35 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
CurlMultiHandler.php
8.1 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
EasyHandle.php
2.94 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
HeaderProcessor.php
1.07 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
MockHandler.php
6.47 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
Proxy.php
2.28 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
StreamHandler.php
21.43 KB
05/19/2025 10:07:16 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; }