X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fhelper%2Fproxy.inc;h=80a007353c4f81e32a924ea7fc955e47d8217074;hb=e6a35dd1dc8c8731d2e4434cef7b33aba383d612;hp=61b20dd1c1b38e3a26190d5d401216387991bc07;hpb=aba1f7d332d866ca1f0397d46751864e430985f3;p=m6w6%2Fext-http diff --git a/tests/helper/proxy.inc b/tests/helper/proxy.inc index 61b20dd..80a0073 100644 --- a/tests/helper/proxy.inc +++ b/tests/helper/proxy.inc @@ -8,6 +8,7 @@ serve(function($client) { if ($request->getHeader("Proxy-Connection")) { $response = new http\Env\Response; + $response->setEnvRequest($request); $response->send($client); /* soak up the request following the connect */ @@ -16,6 +17,7 @@ serve(function($client) { /* return the initial message as response body */ $response = new http\Env\Response; - $response->getBody()->append($request); + /* avoid OOM with $response->getBody()->append($request); */ + $request->toStream($response->getBody()->getResource()); $response->send($client); });