reorder
[m6w6/ext-http] / tests / proxy.inc
diff --git a/tests/proxy.inc b/tests/proxy.inc
deleted file mode 100644 (file)
index 61b20dd..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-<?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);
-});