1

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

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

以下是设置和代码片段。

@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");
                    }
                }
            });
        }
    }

}
4

1 回答 1

0

netty 可能无法处理返回给我的应用程序的 ChannelFuture 状态,该应用程序正确调用 SslHandler.handshake()。我将 hsFuture.setSuccess() 添加到 SslHandler.handshake() 并且我的 operationComplete 被调用。

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) {
于 2013-09-09T13:45:56.533 回答