(final SocketChannel socketChannel, final SSLEngine sslEngine)
| 593 | } |
| 594 | |
| 595 | public static boolean doHandshake(final SocketChannel socketChannel, final SSLEngine sslEngine) throws IOException { |
| 596 | return doHandshake(socketChannel, sslEngine, null); |
| 597 | } |
| 598 | |
| 599 | public static boolean doHandshake(final SocketChannel socketChannel, final SSLEngine sslEngine, Integer timeout) throws IOException { |
| 600 | if (socketChannel == null || sslEngine == null) { |
no test coverage detected