X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fhelper%2Fproxy.inc;h=61a68bd05d909925a00d90e26baeffabb9c873f6;hb=70cbf84439cb4b0fec252966ffd596ebb6bbfdbc;hp=80a007353c4f81e32a924ea7fc955e47d8217074;hpb=e867316f1364f589eec67cc684703c874984430b;p=m6w6%2Fext-http diff --git a/tests/helper/proxy.inc b/tests/helper/proxy.inc index 80a0073..61a68bd 100644 --- a/tests/helper/proxy.inc +++ b/tests/helper/proxy.inc @@ -1,12 +1,15 @@ 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); @@ -18,6 +21,6 @@ serve(function($client) { /* return the initial message as response body */ $response = new http\Env\Response; /* avoid OOM with $response->getBody()->append($request); */ - $request->toStream($response->getBody()->getResource()); + dump_message($response->getBody()->getResource(), $request); $response->send($client); });