34353637383940
@Override public ByteChannel wrapChannel( SocketChannel channel, SelectionKey key ) throws IOException { SSLEngine e = sslcontext.createSSLEngine(); e.setUseClientMode( false ); return new SSLSocketChannel2( channel, e, exec, key ); }