public void testRequestMultithreaded() throws Exception {
MultithreadedServerHandler hdl = new MultithreadedServerHandler();
HttpServer server = new HttpServer(hdl);
server.setRequestTimeoutMillis(1000);
server.addConnectionHandler(hdl);
server.start();
IBlockingConnection con = new BlockingConnection("localhost", server.getLocalPort());
con.write("GET / HTTP/1.1\r\n" +
"Host: localhost\r\n" +