}
try {
socketChannel.socket().setTcpNoDelay(enableTcpNoDelay);
NonBlockingChannel channel = new NonBlockingChannel();
channel.init(connectURI, socketChannel);
ChannelPool pool = getChannelPool(channel.getRemoteURI());
pool.setBackConnectURI( channel.getRequestedURI() );
pool.associate(channel);
} catch (TransportException ie) {
log.debug("Client connection could not be accepted: ", ie);
} catch (IOException ie) {
log.debug("Client connection could not be accepted: ", ie);
} catch (URISyntaxException e) {