X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fhelper%2Fproxy.inc;h=f99dd97cf735575c0cbd7857d0ab77bae9ead7b6;hb=5f6f44f5e51e08da1c5194041850c1c834fba819;hp=363d76f4b88be43a61ff0649caafa0c98d5e9a04;hpb=3f5da039a09164701de8638669fe6e8d4e916970;p=m6w6%2Fext-http diff --git a/tests/helper/proxy.inc b/tests/helper/proxy.inc index 363d76f..f99dd97 100644 --- a/tests/helper/proxy.inc +++ b/tests/helper/proxy.inc @@ -1,5 +1,6 @@ getHeader("Proxy-Connection")) { $response = new http\Env\Response; + $response->setEnvRequest($request); $response->send($client); /* soak up the request following the connect */ @@ -17,6 +19,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); });