ChannelFutureListener.operationComplete of SslHandler.handsh



我在我的Android应用程序中使用了netty-3.6.6 SSL。握手()实际上已经完成(Android应用程序能够向/从SSL服务器发送/接收数据),但操作完成永远不会被调用。我需要调用它来执行一些任务。

我错过了什么或做错了什么?谢谢。

以下是设置和代码段。

@Override
public ChannelPipeline getPipeline() throws Exception {
        ChannelPipeline pip = Channels.pipeline();
        SSLEngine engine = SslContextFactory.getClientContext().createSSLEngine();
        engine.setUseClientMode(true);
        SslHandler sslHandler = new SslHandler(engine);
        sslHandler.setIssueHandshake(false);
        pip.addLast("ssl", sslHandler);
        ...
        return pip;
}
@Override
public void channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) throws Exception {
        System.out.println("channelConnected");
        SslHandler sslHandler = ctx.getPipeline().get(SslHandler.class);
        if (sslHandler != null) {
            // Begin handshake.
            ChannelFuture handshakeFuture = sslHandler.handshake();
            handshakeFuture.addListener(new ChannelFutureListener() {
                @Override
                public void operationComplete(ChannelFuture future) throws Exception {
                    if (!future.isSuccess()) {
                        System.out.println("handshake failed(" + future.getCause() + ")");
                    } else {
                        System.out.println("handshake OK");
                    }
                }
            });
        }
    }
}

>netty 可能无法处理返回到我的应用程序(正确调用 SslHandler.handshake() 的 ChannelFuture 的状态。我将 hsFuture.setSuccess() 添加到 SslHandler.handshake() 中,我的操作 Complete 被调用。

public ChannelFuture handshake() {
        ...
        if (exception == null) { // Began handshake successfully.
            try {
                final ChannelFuture hsFuture = handshakeFuture;
                wrapNonAppData(ctx, channel).addListener(new ChannelFutureListener() {
                    public void operationComplete(ChannelFuture future) throws Exception {
                        if (!future.isSuccess()) {
                            Throwable cause = future.getCause();
                            hsFuture.setFailure(cause);
                            fireExceptionCaught(ctx, cause);
                            if (closeOnSSLException) {
                                Channels.close(ctx, future(channel));
                            }
                        } else {
                            hsFuture.setSuccess();
                        }
                    }
                });
            } catch (SSLException e) {

相关内容

  • 没有找到相关文章

最新更新