if (!sk.isAcceptable())
return;
SocketChannel sc = channel.accept();
if (sc == null) {
return;
}
ChannelIO cio = (sslContext != null ?
ChannelIOSecure.getInstance(
sc, false /* non-blocking */, sslContext) :
ChannelIO.getInstance(
sc, false /* non-blocking */));
RequestHandler rh = new RequestHandler(cio);
dsp.register(cio.getSocketChannel(), SelectionKey.OP_READ, rh);