283284285286287288289290291292293
selectorThread.setPort(port); selectorThread.setAdapter(adapter); try { selectorThread.listen(); } catch (InstantiationException e) { IOException _e = new IOException(); _e.initCause(e); throw _e; }
285286287288289290291292293294295
selectorThread.setAddress(InetAddress.getByName(u.getHost())); selectorThread.setAdapter(adapter); try { selectorThread.listen(); } catch (InstantiationException e) { IOException _e = new IOException(); _e.initCause(e); throw _e; }
264265266267268269270271272273274
273274275276277278279280281282283