yep, moved there. ugh
[m6w6/ext-http] / tests / helper / proxy.inc
diff --git a/tests/helper/proxy.inc b/tests/helper/proxy.inc
new file mode 100644 (file)
index 0000000..61b20dd
--- /dev/null
@@ -0,0 +1,21 @@
+<?php 
+
+include "server.inc";
+
+serve(function($client) {
+       /* this might be a proxy connect or a standard request */
+       $request = new http\Message($client, false);
+       
+       if ($request->getHeader("Proxy-Connection")) {
+               $response = new http\Env\Response;
+               $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->getBody()->append($request);
+       $response->send($client);
+});