256257258259260261262263264265266
private ServerConnection startConnection(Socket s) throws IOException { ServerConnection conn; if (s instanceof HttpInboundSocket) { conn = new HttpServerConnection(s, this); } else { conn = new TcpServerConnection(s, this); } conns.add(conn);
254255256257258259260261262263264