X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fhelper%2Fproxy.inc;h=d60b564267c8e1fe22e659247ebfb9dfb5af3e0f;hp=f99dd97cf735575c0cbd7857d0ab77bae9ead7b6;hb=ab1eba311be2f8aab98eed7a6164e79d69b402b2;hpb=0a5bb2d697afe41949b22afa679d7a5aa4e11f13 diff --git a/tests/helper/proxy.inc b/tests/helper/proxy.inc index f99dd97..d60b564 100644 --- a/tests/helper/proxy.inc +++ b/tests/helper/proxy.inc @@ -1,4 +1,4 @@ -getHeader("Proxy-Connection")) { + /* 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);