X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fhelper%2Fproxy.inc;h=2fb3477537a03a204b69323c06797f5978b24c12;hb=b07c0c2ee31a9061674c2d4e941769129b6e0e86;hp=80a007353c4f81e32a924ea7fc955e47d8217074;hpb=42bcfb0a11dd7e76124d89ffc7b5b7c7e401018e;p=m6w6%2Fext-http diff --git a/tests/helper/proxy.inc b/tests/helper/proxy.inc index 80a0073..2fb3477 100644 --- a/tests/helper/proxy.inc +++ b/tests/helper/proxy.inc @@ -1,23 +1,25 @@ -getHeader("Proxy-Connection")) { $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); */ - $request->toStream($response->getBody()->getResource()); + dump_message($response->getBody()->getResource(), $request); $response->send($client); });