Merge branch 'master' into phpng
[m6w6/ext-http] / tests / helper / proxy.inc
index 61b20dd1c1b38e3a26190d5d401216387991bc07..f99dd97cf735575c0cbd7857d0ab77bae9ead7b6 100644 (file)
@@ -1,5 +1,6 @@
 <?php 
 
+include "dump.inc";
 include "server.inc";
 
 serve(function($client) {
@@ -8,6 +9,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 +18,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); */
+       dump_message($response->getBody()->getResource(), $request);
        $response->send($client);
 });