593594595596597598599600601602603
// Complete a connection of a registered channel SocketChannel channel = (SocketChannel)key.channel(); boolean connected=false; try { connected=channel.finishConnect(); } catch(Exception e) { connectionFailed(channel,e,att); }
677678679680681682683684685686687
589590591592593594595596597598599
701702703704705706707708709710711