Lines Matching defs:server
38 static HttpServer server;
51 server = new HttpServer (new PerConnectionProxy(), 1, 10, 0);
52 ProxyServer pserver = new ProxyServer(InetAddress.getByName("localhost"), server.getLocalPort());
53 // start proxy server
56 URL url = new URL("http://localhost:"+server.getLocalPort());
94 if (server != null) {
95 server.terminate();
108 * Origin server's address and port that the client
114 public ProxyServer(InetAddress server, int port) throws IOException {
115 serverInetAddr = server;