PATH:
opt
/
alt
/
tests
/
alt-php81-pecl-http_4.2.6-4.el8
/
tests
/
helper
<?php include "dump.inc"; include "server.inc"; serve(function($client) { /* this might be a proxy connect or a standard request */ $request = new http\Message($client, false); /* libcurl >= 7.48 does not send Proxy-Connection anymore */ if ($request->getHeader("Proxy-Connection") || $request->getRequestMethod() === "CONNECT") { $response = new http\Env\Response; $response->setEnvRequest($request); $response->send($client); /* soak up the request following the connect */ new http\Message($client, false); } /* return the initial message as response body */ $response = new http\Env\Response; $response->setHeader("X-Request-Content-Length", $request->getBody()->stat("size")); /* avoid OOM with $response->getBody()->append($request); */ dump_message($response->getBody()->getResource(), $request); $response->send($client); });
[-] cookie1.inc
[edit]
[+]
html
[-] cookie.inc
[edit]
[-] http2.key
[edit]
[-] proxy.inc
[edit]
[-] upload.inc
[edit]
[+]
..
[-] pipeline.inc
[edit]
[-] http2.crt
[edit]
[-] server.inc
[edit]
[-] dump.inc
[edit]
[-] cookie2.inc
[edit]
[-] env.inc
[edit]