258259260261262263264265266267268
ServerConnection conn; if (s instanceof HttpInboundSocket) { conn = new HttpServerConnection(s, this); } else { conn = new TcpServerConnection(s, this); } conns.add(conn); /* * Start the thread in non-system group
256257258259260261262263264265266