OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
back_aws-ses
/
vendor
/
guzzlehttp
/
guzzle
/
src
/
Handler
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:21 AM
rwxr-xr-x
📄
CurlFactory.php
24.75 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
CurlFactoryInterface.php
682 bytes
05/19/2025 10:07:21 AM
rw-r--r--
📄
CurlHandler.php
1.35 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
CurlMultiHandler.php
8.1 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
EasyHandle.php
2.94 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
HeaderProcessor.php
1.07 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
MockHandler.php
6.47 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
Proxy.php
2.28 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
StreamHandler.php
21.43 KB
05/19/2025 10:07:21 AM
rw-r--r--
Editing: Proxy.php
Close
<?php namespace GuzzleHttp\Handler; use GuzzleHttp\Promise\PromiseInterface; use GuzzleHttp\RequestOptions; use Psr\Http\Message\RequestInterface; /** * Provides basic proxies for handlers. * * @final */ class Proxy { /** * Sends synchronous requests to a specific handler while sending all other * requests to another handler. * * @param callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface $default Handler used for normal responses * @param callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface $sync Handler used for synchronous responses. * * @return callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface Returns the composed handler. */ public static function wrapSync(callable $default, callable $sync): callable { return static function (RequestInterface $request, array $options) use ($default, $sync): PromiseInterface { return empty($options[RequestOptions::SYNCHRONOUS]) ? $default($request, $options) : $sync($request, $options); }; } /** * Sends streaming requests to a streaming compatible handler while sending * all other requests to a default handler. * * This, for example, could be useful for taking advantage of the * performance benefits of curl while still supporting true streaming * through the StreamHandler. * * @param callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface $default Handler used for non-streaming responses * @param callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface $streaming Handler used for streaming responses * * @return callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface Returns the composed handler. */ public static function wrapStreaming(callable $default, callable $streaming): callable { return static function (RequestInterface $request, array $options) use ($default, $streaming): PromiseInterface { return empty($options['stream']) ? $default($request, $options) : $streaming($request, $options); }; } }